输入一批正整数(以零或负数为结束标志),求其中所有奇数的和。要求

2025-02-01 01:46:55
推荐回答(1个)
回答1:

#include

int even(int n)

{return n%2;

}

int main()

{int s=0,x;

scanf("%d",&x);

while(x>0)

{ if(even(x))s+=x;

scanf("%d",&x);

}

printf("%d\n",s);  

return 0;

}