输入学生的语文100、数学90、英语80、物理704门课程的成绩,计算该学生的总成绩和平均成绩并输出。用c++怎么写
时间: 2023-04-03 11:01:19 浏览: 71
可以使用以下代码来计算学生的总成绩和平均成绩:
```c
#include <stdio.h>
int main() {
int chinese = 100;
int math = 90;
int english = 80;
int physics = 70;
int total = chinese + math + english + physics;
float average = (float)total / 4;
printf("总成绩为:%d\n", total);
printf("平均成绩为:%.2f\n", average);
return ;
}
```
输出结果为:
```
总成绩为:340
平均成绩为:85.00
```
相关问题
使用c++语言编程,输入学生的语文,数学,英语和物理4门课程的成绩,计算该学生的总成绩和平均成绩并输出。
好的,以下是使用 C 语言编写的计算学生总成绩和平均成绩的代码:
```
#include <stdio.h>
int main() {
float chinese, math, english, physics, total, average;
printf("请输入学生的语文成绩:");
scanf("%f", &chinese);
printf("请输入学生的数学成绩:");
scanf("%f", &math);
printf("请输入学生的英语成绩:");
scanf("%f", &english);
printf("请输入学生的物理成绩:");
scanf("%f", &physics);
total = chinese + math + english + physics;
average = total / 4;
printf("学生的总成绩为:%.2f\n", total);
printf("学生的平均成绩为:%.2f\n", average);
return 0;
}
```
希望这个代码能够帮到你!
输入学生的语文,数学,英语和物理四门课程的成绩,计算该学生的总成绩和平均成绩并输出。
好的,以下是计算学生总成绩和平均成绩的代码:
```python
chinese = float(input("请输入学生的语文成绩:"))
math = float(input("请输入学生的数学成绩:"))
english = float(input("请输入学生的英语成绩:"))
physics = float(input("请输入学生的物理成绩:"))
total_score = chinese + math + english + physics
average_score = total_score / 4
print("学生的总成绩为:", total_score)
print("学生的平均成绩为:", average_score)
```
请注意,这段代码只是一个简单的示例,实际应用中可能需要更复杂的计算和处理。
阅读全文