全国等级考试资料网

全国计算机等级考试C语言考试程序改错题(12)

分类: 计算机  时间: 2022-08-24 02:44:25  作者: 全国等级考试资料网 

在考生文件夹下,给定程序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

相关文章

猜你喜欢

精选计算机