#include <iostream> #include <iomanip> #include <string.h> #include <cmath> #define M 3 // 课程门数 #define N 4 //学生数组中的学生个数 using namespace std; class Student { public: Student() {} Student(const Student&); void input_info() { cin>>id; cin>>name; for(int i=0; i<3; i++) cin>>score[i]; isFail=false; for(int i=0; i<3; i++) if(score[i]<60) isFail=true; } void input_lesson_ids() { for(int i=0; i<M; i++) cin>>lesson_id[i]; } void show_info() { cout<<"Student id:"<<id<<endl; cout<<"Student name:"<<name<<endl; cout<<setw(10)<<"lesson_id "; for(int i=0; i<M; i++) cout<<setw(10)<<lesson_id[i]; cout<<setw(10)<<"Average"; cout<<endl; cout<<setw(10)<<"scores "; for(int i=0; i<M; i++) cout<<setw(10)<<score[i]; cout<<setw(10)<<ave(); cout<<endl; if(isFail) cout<<"The student failed."<<endl; else cout<<"The student didn\'t fail."<<endl; cout<<"------华丽的分割线--------"<<endl; } float ave()//求平均成绩 { //实现求平均成绩并返回 ...... } string get_name() { return name; }private: int id; string name; bool isFail; static int lesson_id[M]; float score[M]; }; int Student::lesson_id[M]; Student::Student(const Student& s) { //完成拷贝构造函数的实现,拷贝出的对象和原对象一致 ...... } int main() { Student cs[N]; cs[0].input_lesson_ids();// 用一个学生对象对静态数组成员赋值 for(int i=0; i<N; i++) cs[i].input_info(); //求出最高平均成绩并按要求格式输出相关语句 ...... //求出最低平均成绩并按要求格式输出相关语句 ...... //按照平均成绩的高低对学生数组进行排序 ...... for(int i=0; i<N; i++)//输出排序后的结果 cs[i].show_info(); return 0; }补全
时间: 2024-03-16 16:42:24 浏览: 58
代码中的几个函数实现了一个学生成绩管理系统,可以输入学生的信息,包括学号、姓名、课程成绩等,然后计算每个学生的平均成绩并判断是否通过,最后按照平均成绩的高低对学生数组进行排序并输出。在代码中需要补全以下几个部分:
1. 完成平均成绩的计算
在类中的成员函数 `float ave()` 中,需要实现求平均成绩并返回的功能,可以使用循环求和,然后除以课程门数即可。
2. 完成拷贝构造函数的实现
在类中的拷贝构造函数 `Student(const Student& s)` 中,需要实现将一个学生对象复制到另一个学生对象中的功能,可以使用浅拷贝即可。
3. 按照平均成绩的高低对学生数组进行排序
可以使用冒泡排序或选择排序等算法实现,这里以冒泡排序为例,需要在 `main` 函数中添加以下代码:
```
//按照平均成绩的高低对学生数组进行排序
for(int i=0; i<N-1; i++)
{
for(int j=0; j<N-1-i; j++)
{
if(cs[j].ave() < cs[j+1].ave())
{
Student temp = cs[j];
cs[j] = cs[j+1];
cs[j+1] = temp;
}
}
}
```
这段代码会对学生数组进行冒泡排序,使得平均成绩高的学生排在前面,平均成绩低的学生排在后面。最后再调用 `show_info()` 函数输出排序后的结果即可。
相关问题
#include<iostream> #include<stdlib.h> #include<time.h> #include<windows.h> #define+M+100+ using+name
这段代码是C++代码,它包含了一些头文件和宏定义,并定义了一个main函数。在main函数中,它使用了一个while循环来读取输入的半径值,并计算圆的面积,然后输出结果。代码中使用了cmath库中的pow函数来计算半径的平方,使用了iomanip库中的setprecision函数来设置输出结果的精度。
这段代码的功能是计算输入半径的圆的面积,并输出结果。
以下是这段代码的解释和演示:
```cpp
#include<iostream>
#include<stdlib.h>
#include<time.h>
#include<windows.h>
#define M 100
using namespace std;
int main(void) {
int r;
while ( cin >> r && r <= 10000 && r >= 1 && r != EOF ) {
double s;
s = PI * pow(r,2);
cout << fixed << setprecision(7) << s << endl;
}
return 0;
}
```
#include <iostream> #include <iomanip> #include <string.h> #include <cmath> #define M 3 // 课程门数 #define N 4 //学生数组中的学生个数 using namespace std; class Student { public: Student() {} Student(const Student&); void input_info() { cin>>id; cin>>name; for(int i=0; i<3; i++) cin>>score[i]; isFail=false; for(int i=0; i<3; i++) if(score[i]<60) isFail=true; } void input_lesson_ids() { for(int i=0; i<M; i++) cin>>lesson_id[i]; } void show_info() { cout<<"Student id:"<<id<<endl; cout<<"Student name:"<<name<<endl; cout<<setw(10)<<"lesson_id "; for(int i=0; i<M; i++) cout<<setw(10)<<lesson_id[i]; cout<<setw(10)<<"Average"; cout<<endl; cout<<setw(10)<<"scores "; for(int i=0; i<M; i++) cout<<setw(10)<<score[i]; cout<<setw(10)<<ave(); cout<<endl; if(isFail) cout<<"The student failed."<<endl; else cout<<"The student didn\'t fail."<<endl; cout<<"------华丽的分割线--------"<<endl; } float ave()//求平均成绩 { //实现求平均成绩并返回 ...... } string get_name() { return name; }private: int id; string name; bool isFail; static int lesson_id[M]; float score[M]; }; int Student::lesson_id[M]; Student::Student(const Student& s) { //完成拷贝构造函数的实现,拷贝出的对象和原对象一致 ...... } int main() { Student cs[N]; cs[0].input_lesson_ids();// 用一个学生对象对静态数组成员赋值 for(int i=0; i<N; i++) cs[i].input_info(); //求出最高平均成绩并按要求格式输出相关语句 ...... //求出最低平均成绩并按要求格式输出相关语句 ...... //按照平均成绩的高低对学生数组进行排序 ...... for(int i=0; i<N; i++)//输出排序后的结果 cs[i].show_info(); return 0; }补全c++
补全后的代码如下:
```c++
#include <iostream>
#include <iomanip>
#include <string.h>
#include <cmath>
#define M 3 // 课程门数
#define N 4 //学生数组中的学生个数
using namespace std;
class Student
{
public:
Student() {}
Student(const Student&);
void input_info()
{
cin >> id;
cin >> name;
for (int i = 0; i < M; i++)
cin >> score[i];
isFail = false;
for (int i = 0; i < M; i++)
if (score[i] < 60)
isFail = true;
}
void input_lesson_ids()
{
for (int i = 0; i < M; i++)
cin >> lesson_id[i];
}
void show_info()
{
cout << "Student id:" << id << endl;
cout << "Student name:" << name << endl;
cout << setw(10) << "lesson_id ";
for (int i = 0; i < M; i++)
cout << setw(10) << lesson_id[i];
cout << setw(10) << "Average";
cout << endl;
cout << setw(10) << "scores ";
for (int i = 0; i < M; i++)
cout << setw(10) << score[i];
cout << setw(10) << ave();
cout << endl;
if (isFail)
cout << "The student failed." << endl;
else
cout << "The student didn't fail." << endl;
cout << "------华丽的分割线--------" << endl;
}
float ave()//求平均成绩
{
float sum = 0;
for (int i = 0; i < M; i++)
sum += score[i];
return sum / M;
}
string get_name()
{
return name;
}
private:
int id;
string name;
bool isFail;
static int lesson_id[M];
float score[M];
};
int Student::lesson_id[M];
Student::Student(const Student& s)
{
id = s.id;
name = s.name;
isFail = s.isFail;
for (int i = 0; i < M; i++)
{
lesson_id[i] = s.lesson_id[i];
score[i] = s.score[i];
}
}
int main()
{
Student cs[N];
cs[0].input_lesson_ids();// 用一个学生对象对静态数组成员赋值
for (int i = 0; i < N; i++)
cs[i].input_info();
float max_ave = 0, min_ave = 101;
for (int i = 0; i < N; i++)
{
max_ave = max(max_ave, cs[i].ave());
min_ave = min(min_ave, cs[i].ave());
}
cout << "the highest average score = " << max_ave << endl;
cout << "the lowest average score = " << min_ave << endl;
sort(cs, cs + N, [](const Student& a, const Student& b) {return a.ave() > b.ave(); });
for (int i = 0; i < N; i++)
cs[i].show_info();
return 0;
}
```
这段代码实现了一个学生信息管理系统,可以输入一些学生的姓名和三门课的成绩,计算并显示每个学生的平均成绩,并按照平均成绩的高低对学生数组进行排序,最后输出排序后的结果。同时,还可以求出最高平均成绩和最低平均成绩并输出。其中,使用了Lambda表达式来实现排序。
阅读全文