敲课本例题的第三天,今天依旧是分支结构!

时间:2022-11-26 20:54:39

【例3-3】统计指定数量学生的平均成绩与不及格人数。输入一个非负整数n,再输入n个学生成绩,计算平均分,并统计不及格成绩的学生。

#include<stdio.h>

int main(void)
{
int count, i, n;
double score, total;
printf("Enter n:");
scanf("%d“, &n);
total = 0;
count = 0;
for(i=1;i<n;i++){ //输入从学生成绩
printf("Enter score #%d:", i);
scanf("%lf",&score);
total = total + socre;
if(score < 60{ //判断是否小于平均分
count++;
}
}
if(n!=o){
printf("Average = %.2f\n", total/n);
}else{
printf("Average = %.2\n", 0.0);
}
printf("Number of failures = %d\n", count):

return 0;
}