标签:comment com class keyword lse cti function bsp amp
本题要求实现一个函数,计算N个整数中所有奇数的和,同时实现一个判断奇偶性的函数。
int even( int n );
int OddSum( int List[], int N );
其中函数even
将根据用户传入的参数n
的奇偶性返回相应值:当n
为偶数时返回1,否则返回0。函数OddSum
负责计算并返回传入的N
个整数List[]
中所有奇数的和。
#include <stdio.h>
#define MAXN 10
int even( int n );
int OddSum( int List[], int N );
int main()
{
int List[MAXN], N, i;
scanf("%d", &N);
printf("Sum of ( ");
for ( i=0; i<N; i++ ) {
scanf("%d", &List[i]);
if ( even(List[i])==0 )
printf("%d ", List[i]);
}
printf(") = %d\n", OddSum(List, N));
return 0;
}
/* 你的代码将被嵌在这里 */
6
2 -3 7 88 0 15
Sum of ( -3 7 15 ) = 19
1 int even(int n){ 2 if(n%2==0) 3 return 1; 4 else 5 return 0; 6 } 7 8 int OddSum(int List[],int N){ 9 int sum=0; 10 for(int i=0;i<N;i++){ 11 if(even(List[i])==0){ 12 sum+=List[i]; 13 } 14 } 15 return sum; 16 }
标签:comment com class keyword lse cti function bsp amp
原文地址:https://www.cnblogs.com/samgue/p/13179265.html