#include<stdio.h> int main() { int scores[1000],score,i=0,j,excellent=0,pass=0,unpass=0; while(scanf("%d",&score)!=EOF&&score>0) scores[i++]=score; for(j=0;j<i;j++) { if(scores[j]>=85) excellent++; else if(scores[j]>=60&&scores[j]<85) pass++; else unpass++; } printf(">=85:%d\n60-84:%d\n<60:%d\n",excellent,pass,unpass); return 0; }
0.0分
0 人评分
简单的a+b (C语言代码)浏览:585 |
陶陶摘苹果 (C语言代码)浏览:1652 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:711 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:878 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)浏览:2498 |
蛇行矩阵 (C语言代码)浏览:792 |
三角形 (C++代码)记忆化搜索浏览:1318 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:388 |
sizeof的大作用 (C语言代码)浏览:1592 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:676 |