定义一个学生类Student,包括如下属性:学生学号、姓名、年龄、专业、年级等,

2024-11-04 11:32:14
推荐回答(2个)
回答1:

1、判蚂首先,定义一个数据结构student,包含学生的各信息。

2、定义两个student类型的变量,保存所有学生的成绩信息和临时变量。

3、定义一个自定义函数,输入学生的成绩信息。

4、具体实现学生信息的输入,并计算总分。

5、主函数中,先定义4个整型变量,保存学生的总数,以及控制循环的变量。

6、接配蔽着,输入学生总数,保存在变量n中。

7、输入所有学生的信息,保存在数组arr中。

8、用3重循环,实现学生按学号的排序。最后掘卖埋,按学号输出各学生的总分。

回答2:

//student.h
#ifndef STUDENT_H
#define STUDENT_H

#include 

using namespace std;

class student
{
public:
    student(string no,string na,int a,string spe,string cla);
   扰码 ~student();
private:
    string stuno;
    string name;
    int age;
    string specialty;
    string classlev;
public:
    void Display();
};

#endif // STUDENT_H

//student.cpp
#include "student.h"
#include 
#include 
using namespace std;

student::student(string no, string na, int a, string spe, string cla)
{
    stuno=no;
    猜李雀name=na;
    age=a;
   穗早 specialty=spe;
    classlev=cla;
}

student::~student()
{

}

void student::Display()
{
    cout<<"student no.:"<        <<"name: "<        <<"age: "<        <<"specialty: "<        <<"class: "<}

//main.cpp
#include 
#include "student.h"

int main(void)
{
    student stu("201601001","lilei",18,"computer","class 3");
    stu.Display();
    return 0;
}