写程序输入一个学生的语文数学英语物理成绩计算并输出该学生的总成绩和平均成绩
时间: 2023-11-30 12:26:47 浏览: 87
score_chinese = float(input("请输入学生的语文成绩:"))
score_math = float(input("请输入学生的数学成绩:"))
score_english = float(input("请输入学生的英语成绩:"))
score_physics = float(input("请输入学生的物理成绩:"))
total_score = score_chinese + score_math + score_english + score_physics
average_score = total_score / 4
print("该学生的总成绩为:", total_score)
print("该学生的平均成绩为:", average_score)
相关问题
写c语言程序输入一个学生的语文数学英语物理成绩计算并输出该学生的总成绩和平均成绩
```c
#include <stdio.h>
int main()
{
float chinese, math, english, physics, total, average;
printf("请输入该学生的语文数学英语物理成绩(用空格隔开):\n");
scanf("%f %f %f %f", &chinese, &math, &english, &physics);
total = chinese + math + english + physics;
average = total / 4;
printf("该学生的总成绩为%.2f,平均成绩为%.2f\n", total, average);
return 0;
}
```
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;
}
```
阅读全文