# include <iostream>
//using namespace std;
int main(void){
int n, s = 0;
do {
cin >> n;
s += (n % 2)
} while (n < 10000)
std::cout << s << std::endl;
return 0;
}
【 在 eyahoo 的大作中提到: 】
: 题目是:输入若干正整数,统计并输出其中奇数的个数。要求,输入,若干正整数(不超过10000个)。输出,一行一个数,表示奇数的个数。
: 小朋友写的程序:
: # include <iostream>
: ...................
--
FROM 42.248.46.*