参考代码如下:
#include <stdio.h> #include <math.h> int main() { int num1 = 0; int num2 = 0; int num3 = 0; int score; //当输入的score等于0或者负数时退出 while (scanf("%d", &score) != EOF && score > 0) { if (score < 60) num1++; else if (score < 85) num2++; else num3++; } printf(">=85:%d\n", num3); printf("60-84:%d\n", num2); printf("<60:%d\n", num1); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:949 |
成绩转换 (C语言代码)浏览:1048 |
WU-蓝桥杯算法提高VIP-Quadratic Equation (C++代码)浏览:1808 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:593 |
IP判断 (C语言代码)浏览:819 |
用筛法求之N内的素数。 (C语言代码)浏览:711 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |
1202题解浏览:689 |
马拦过河卒 (C语言代码)浏览:1213 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:456 |