c语言程序输入一个学生的语文、数学、语英语、物理成绩,计算并输出该学生的总成绩和平均成绩
时间: 2023-12-16 07:52:30 浏览: 92
C语言输入学生成绩,计算并输出这些学生的最低分、最高分、平均分。
```c
#include<stdio.h>
int main()
{
float chinese, math, english, physics;
float total, average;
printf("请输入该学生的语文、数学、英语、物理成绩:\n");
scanf("%f%f%f%f", &chinese, &math, &english, &physics);
total = chinese + math + english + physics;
average = total / 4;
printf("该学生的总成绩为:%.2f\n", total);
printf("该学生的平均成绩为:%.2f\n", average);
return 0;
}
```
阅读全文