问题如下: /* 标准文档模板 */ #include "Stdio.h"#include "Conio.h"#include "math.h"float sum(float a,int n)/* 求和函数 */{float s=0;int d;for(d=0;d<n;++d){s=s+a;}return s;}float std(...
阅读全文
2009
09-27