标签:++ else str stream std return 空格 程序 整数
给定k(1<k<100)个正整数,其中每个数都是大于等于1,小于等于10的数。写程序计算给定的k个正整数中,1,5和10出现的次数。
输入有两行:第一行包含一个正整数k,第二行包含k个正整数,每两个正整数用一个空格分开。
输出有三行,第一行为1出现的次数,,第二行为5出现的次数,第三行为10出现的次数。
#include <iostream> using namespace std; int main() { int a = 0, b = 0, c = 0, k; cin >> k; while (k--) { int d; cin >> d; if (d == 1) a++; else if (d == 5) b++; else if (d == 10) c++; } cout << a << endl << b << endl << c << endl; return 0; }
标签:++ else str stream std return 空格 程序 整数
原文地址:http://www.cnblogs.com/Zhz0306/p/7634570.html