请各位帮忙写一下这个C语言代码,麻烦了,急用,要C语言或c++, 在线等。。。

2024-11-17 12:59:31
推荐回答(2个)
回答1:

class Student
{
    string m_strNum;
    string m_strName;
public:
    Student(const string &strNum, const string &strName)
    {
        m_strNum = strNum;
        m_strName = strName;
    }
};

class CollageStudent : public Student
{
    string m_strMajor;
public:
    CollageStudent(const string &strNum, const string &strName, const string &strMajor)
    : Student::Student(strNum, strName), 
    m_strMajor(strMajor)
    {
        cout << "construct collage student\n";
    }
};

int main()
{
    CollageStudent cs("1234", "Jack", "Software Engineering");
    
    system("pause");
    return 0;
}

回答2:

什么时候要,急用吗?