使用c++语言编程,输入学生的语文,数学,英语和物理4门课程的成绩,计算该学生的总成绩和平均成绩并输出。
时间: 2023-05-14 07:05:18 浏览: 115
好的,以下是使用 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;
}
```
希望这个代码能够帮到你!
相关问题
输入学生的语文数学英语物理四门课程的成绩,计算该学生的总成绩和平均成绩并输出的c++代码怎么写
在C++中,你可以创建一个结构体来存储学生的信息,并编写函数来计算总成绩和平均成绩。下面是一个简单的示例:
```cpp
#include <iostream>
using namespace std;
// 定义一个结构体来存储学生信息
struct Student {
float Chinese; // 语文成绩
float Math; // 数学成绩
float English; // 英语成绩
float Physics; // 物理成绩
};
// 计算总成绩和平均成绩的函数
void calculateScore(Student student) {
float totalScore = student.Chinese + student.Math + student.English + student.Physics;
float averageScore = totalScore / 4.0; // 除以4是因为有4门课
cout << "学生总成绩:" << totalScore << endl;
cout << "学生平均成绩:" << averageScore << endl;
}
int main() {
// 创建一个Student对象并输入分数
Student student;
cout << "请输入学生的语文成绩:";
cin >> student.Chinese;
cout << "请输入学生的数学成绩:";
cin >> student.Math;
cout << "请输入学生的英语成绩:";
cin >> student.English;
cout << "请输入学生的物理成绩:";
cin >> student.Physics;
// 调用函数计算并显示结果
calculateScore(student);
return 0;
}
```
输入学生的语文100、数学90、英语80、物理704门课程的成绩,计算该学生的总成绩和平均成绩并输出。用c++怎么写
可以使用以下代码来计算学生的总成绩和平均成绩:
```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
```
阅读全文