按c语言 百分制输入学生的考试分数,统计及格率。
时间: 2023-05-19 16:07:08 浏览: 166
可以使用以下代码实现:
#include <stdio.h>
int main() {
int score, pass_count = 0, total_count = 0;
float pass_rate;
printf("请输入学生的考试分数(输入-1结束):\n");
while (1) {
scanf("%d", &score);
if (score == -1) {
break;
}
total_count++;
if (score >= 60) {
pass_count++;
}
}
pass_rate = (float)pass_count / total_count * 100;
printf("及格率为:%.2f%%\n", pass_rate);
return 0;
}
阅读全文