输入学生的学号及语文、数学、英语成绩,输出学生各科成绩及平均成绩信息。c++
时间: 2023-11-04 21:13:53 浏览: 183
好的,下面是一个C++程序,可以实现你的要求:
```c++
#include <iostream>
#include <string>
using namespace std;
int main()
{
string id; // 学生学号
float chinese, math, english; // 学生语文、数学、英语成绩
// 输入学生信息
cout << "请输入学生的学号:" << endl;
getline(cin, id);
cout << "请输入学生的语文成绩:" << endl;
cin >> chinese;
cout << "请输入学生的数学成绩:" << endl;
cin >> math;
cout << "请输入学生的英语成绩:" << endl;
cin >> english;
// 输出学生信息
cout << "学生学号:" << id << endl;
cout << "语文成绩:" << chinese << endl;
cout << "数学成绩:" << math << endl;
cout << "英语成绩:" << english << endl;
cout << "平均成绩:" << (chinese + math + english) / 3 << endl;
return 0;
}
```
运行结果:
```
请输入学生的学号:
20210001
请输入学生的语文成绩:
90.5
请输入学生的数学成绩:
85
请输入学生的英语成绩:
88.5
学生学号:20210001
语文成绩:90.5
数学成绩:85
英语成绩:88.5
平均成绩:88
```
程序会提示你输入学生的学号、语文、数学、英语成绩,然后输出这些信息以及平均成绩。
阅读全文