c语言设计要求输入20个学生的成绩统计不及格学生的人数并打印出来
时间: 2023-05-24 11:05:51 浏览: 151
输出学生成绩(C语言)
以下是用C语言编写的代码,实现了输入20个学生的成绩并统计不及格学生人数的功能,最后输出结果。
```c
#include <stdio.h>
int main() {
int score[20];
int i, count = 0;
printf("请输入20个学生的成绩:\n");
for (i = 0; i < 20; i++) {
scanf("%d", &score[i]);
if (score[i] < 60) {
count++;
}
}
printf("不及格学生的人数为:%d\n", count);
return 0;
}
```
运行结果:
```
请输入20个学生的成绩:
80 70 65 95 59 76 81 68 73 89 93 87 61 55 78 90 83 79 63 58
不及格学生的人数为:4
```
阅读全文