# include <iostream>
using namespace std;
int main(){
int n, s=0;
while( cin >> n )
{
if( n % 2 == 1 )
s++;
}
cout << s <<endl;
return 0;
}
在控制台运行时,输入数据结束后以Ctrl+z或者其他非数字字符表示输入结束。
【 在 eyahoo 的大作中提到: 】
: 题目是:输入若干正整数,统计并输出其中奇数的个数。要求,输入,若干正整数(不超过10000个)。输出,一行一个数,表示奇数的个数。
: 小朋友写的程序:
: # include <iostream>
: ...................
--
FROM 183.199.67.*