编写一个C语言程序,从键盘输入学生的四门成绩,计算并输出学生的总成绩和平均分。
时间: 2023-04-04 08:02:24 浏览: 617
好的,这是一个计算学生总成绩和平均分的问题,我可以回答。以下是一个示例程序:
#include <stdio.h>
int main() {
float score1, score2, score3, score4;
float total, average;
printf("请输入学生的四门成绩:\n");
scanf("%f %f %f %f", &score1, &score2, &score3, &score4);
total = score1 + score2 + score3 + score4;
average = total / 4;
printf("学生的总成绩为:%.2f\n", total);
printf("学生的平均分为:%.2f\n", average);
return 0;
}
这个程序会提示用户输入四门成绩,然后计算总成绩和平均分,并输出结果。注意,这里使用了浮点数类型来存储成绩和计算结果,以保证精度。
阅读全文