解题思路:
注意事项:
参考代码:
#include<stdio.h>
int main()
{
int i,a[100],t;
int b=0,c=0,d=0;
for(i=0;;i++)
{
scanf("%d",&a[i]);
if(a[i]<=0)
{
t=i;
break;
}
}
for(i=0;i<t;i++)
{
if(a[i]>=85)
b++;
if(a[i]>=60&&a[i]<=84)
c++;
if(a[i]<60)
d++;
}
printf(">=85:%d\n60-84:%d\n<60:%d\n",b,c,d);
return 0;
}
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1417 |
C语言训练-阿姆斯特朗数 (C语言代码)浏览:897 |
C二级辅导-统计字符 (C语言代码)浏览:577 |
陶陶摘苹果 (C语言代码)浏览:1652 |
川哥的吩咐 (C语言代码)浏览:926 |
字符串输入输出函数 (C++代码)(都当成字符串吧hhhhhhhh)浏览:508 |
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码)浏览:417 |
WU-整数平均值 (C++代码)浏览:1307 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
printf基础练习2 (C语言代码)浏览:796 |