解题思路:
注意事项:
参考代码
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int d=0,b=0,c=0,a;
scanf("%d",&a);
while(a){
if(a>=85){
d++;
}
else if(a>=60){
b++;
}
else{
c++;
}
scanf("%d",&a);
}
printf(">=85:%d\n60-84:%d\n<60:%d",d,b,c);
return 0;
}
0.0分
0 人评分
C二级辅导-等差数列 (C语言代码)浏览:806 |
敲七 (C语言代码)浏览:2747 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:587 |
【魔板】 (C++代码)浏览:1236 |
小O的数字 (C++代码)浏览:806 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:456 |
C二级辅导-公约公倍 (C语言代码)浏览:693 |
1025题 初学者,求帮忙看下,不知道哪错了浏览:325 |
C语言程序设计教程(第三版)课后习题7.3 (C++代码)浏览:483 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:494 |