猿问

你好,请教输入一批正整数(以零或负数为结束标志),求其中的奇数和?

输入

12 9 7 18 3 11 20 0

输出
The sum of the odd numbers is 30.

#include <stdio.h>
int even(int n);
int main(void)
{

/* 此处添加程序 */

}

回首忆惘然
浏览 124回答 1
1回答

达令说

int main(void){cout<<"Please input numbers, end with 0: "<<endl;int i = 0, sum = 0;cin>>i;while(i > 0){if(i%2 != 0){sum += i;}cin>>i;}cout<<"The sum of the odd numbers is "<<sum<<"."<<endl;return 0;}
随时随地看视频慕课网APP
我要回答