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