在考生文件夹下,给定程序MODI.C的功能是:
求一维数组a中所有元素的平均值。
例如,当一维数组a中的元素为:10,4,2,7,3,12,5,34,5,9
程序的输出应为:The aver is: 9.10 。
#include
#include
void main()
{
int a[10]={10,4,2,7,3,12,5,34,5,9},i;
double aver,s;
s = a[0];
for ( i=1; i<10; i++) |
for ( i=0; i<10; i++)
/************found************/
s = s + a[i]; |
aver = s / i;
printf("The aver is: %.2f\n", aver);
}
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 | |
全国职称计算机考试速成过关系列套装:W .. 定价:¥133 优惠价:¥133.0 更多书籍 |