解题思路:
注意事项:
参考代码:
#include<stdio.h>
int main(void)
{
int i,a[10],count=0;
double s=0.0;
for(i=0;i<10;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<10;i++)
{
s+=a[i];
if(a[i]<60)count++;
}
s/=10;
printf("%.1lf %d\n",s,count);
return 0;
}
0.0分
0 人评分
妹子杀手的故事 (C语言代码)浏览:1297 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:699 |
简单的for循环浏览:1496 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
Tom数 (C语言代码)浏览:581 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |
分糖果 (C语言代码)浏览:980 |
C二级辅导-统计字符 (C语言代码)浏览:695 |
多输入输出练习2 (C语言代码)浏览:1710 |