林惜城


私信TA

用户名:reminder

访问量:31386

签 名:

等  级
排  名 90
经  验 9080
参赛次数 0
文章发表 95
年  龄 0
在职情况 学生
学  校 西安电子科技大学
专  业

  自我简介:

哈姆

TA的其他文章

题解 1105: 数列
浏览:709

解题思路:

用 while() 接收连续输入,在循环里面加一个判断条件 score < 1 就 break。


注意事项:

实际上想要更细心的话,应该加一个对于输入 score > 100 时的异常处理。


参考代码:

// 题目 1070: 二级C语言-成绩归类
#include <iostream>

using namespace std;

int main() {
	int excellent = 0; // 优秀
	int pass = 0;      // 通过
	int fail = 0;      // 不及格
	int score = 0;     // 存储每次输入的分数
	while (1) {
		cin >> score;
		if (score < 1) {
			break; // 结束输入
		} else if (score > 84) {
			++excellent;
		} else if (score > 59) {
			++pass;
		} else {
			++fail;
		}
	}
	cout << ">=85:" << excellent << endl << "60-84:" << pass << endl << "<60:" << fail << endl;
	return 0;
}


 

0.0分

2 人评分

  评论区

  • «
  • »