用C++生成按下列要求编写程序。 (1)定义一个分数类Score。它有 3个数据成员: Chinese //语文课成绩 English //英语课成绩 Mathematics //数学课成绩 2个构造函数:无参的和带参数的 3个成员函数:是否带参数根据需要自定 sum() //计算三门课总成绩 print() //输出三门课成绩和总成绩 modify() //修改三门课成绩 (2)定义一个学生类Student。它有 3个数据成员: Num //学号 Name //姓名 MyScore //成绩 2个构造函数:无参的和带参数的 3个成员函数:是否带参数根据需要自定 sum() //计算某学生三门课总成绩 print() //输出某学生学号、姓名和成绩 modify() //修改某学生学号、姓名和成绩 (3)在主函数中,先定义一个学生类对象数组,再通过for循环给对象数组赋上实际值,最后输出对象数组个元素的值。
时间: 2023-06-09 21:08:00 浏览: 106
很高兴能解答您的问题!下面是按照您要求编写的 C 程序:
```c
#include <stdio.h>
// 定义分数类
typedef struct Score {
int Chinese; //语文课成绩
int English; //英语课成绩
int Mathematics; //数学课成绩
// 无参构造函数
Score() {}
// 带参数构造函数
Score(int Chinese, int English, int Mathematics) {
this->Chinese = Chinese;
this->English = English;
this->Mathematics = Mathematics;
}
// 计算三门课总成绩
int sum() {
return this->Chinese + this->English + this->Mathematics;
}
// 输出三门课成绩和总成绩
void print() {
printf("Chinese: %d\nEnglish: %d\nMathematics: %d\nTotal: %d\n", this->Chinese, this->English, this->Mathematics, sum());
}
// 修改三门课成绩
void modify(int Chinese, int English, int Mathematics) {
this->Chinese = Chinese;
this->English = English;
this->Mathematics = Mathematics;
}
} Score;
// 定义学生类
typedef struct Student {
int Num; //学号
char* Name; //姓名
Score MyScore; //成绩
// 无参构造函数
Student() {}
// 带参数构造函数
Student(int Num, char* Name, Score MyScore) {
this->Num = Num;
this->Name = Name;
this->MyScore = MyScore;
}
// 计算某学生三门课总成绩
int sum() {
return this->MyScore.sum();
}
// 输出某学生学号、姓名和成绩
void print() {
printf("Num: %d\nName: %s\n", this->Num, this->Name);
this->MyScore.print();
}
// 修改某学生学号、姓名和成绩
void modify(int Num, char* Name, Score MyScore) {
this->Num = Num;
this->Name = Name;
this->MyScore = MyScore;
}
} Student;
int main() {
// 定义学生类对象数组
Student students[3];
// 循环给对象数组赋上实际值
for (int i = 0; i < 3; i++) {
Score score(rand() % 100, rand() % 100, rand() % 100);
students[i] = Student(i + 1, "Student", score);
}
// 输出对象数组个元素的值
for (int i = 0; i < 3; i++) {
students[i].print();
printf("\n");
}
return 0;
}
```
这个程序定义了两个类,一个是分数类 `Score`,另一个是学生类 `Student`,并在主函数中定义了一个学生类对象数组,通过循环给对象数组赋上实际值,最后输出对象数组个元素的值。
其中 `Score` 类有 3 个数据成员 `Chinese`、`English` 和 `Mathematics`,表示三门课的成绩,有 2 个构造函数,一个是无参的,另一个是带参数的,有 3 个成员函数 `sum()`、`print()` 和 `modify()`,分别用于计算三门课总成绩、输出三门课成绩和总成绩以及修改三门课成绩。
`Student` 类有 3 个数据成员 `Num`、`Name` 和 `MyScore`,分别表示学号、姓名和成绩,有 2 个构造函数,一个是无参的,另一个是带参数的,有 3 个成员函数 `sum()`、`print()` 和 `modify()`,分别用于计算某学生三门课总成绩、输出某学生学号、姓名和成绩以及修改某学生学号、姓名和成绩。
希望对您有所帮助!如果还有问题,可以再问我哟~
阅读全文