习题 8.4 在本章第8.3.3节中分别给出了包含类定义的头文件student.h,包含成员函数定义的源文件student.cpp以及包含主函数的源文件main.cpp。请完善该程序,在类中增加。。。

C++程序设计(第三版) 谭浩强 习题8.4 个人设计

习题 8.4 在本章第8.3.3节中分别给出了包含类定义的头文件student.h,包含成员函数定义的源文件student.cpp以及包含主函数的源文件main.cpp。请完善该程序,在类中增加一个对数据成员赋初值的成员函数set_value。上机调试并运行。

代码块:

#include 
#include 
using namespace std;
class Student
{
public:
    void display();
    void set_value();
private:
    int num;
    string name;
    char sex;
};
void Student::set_value()
{
    cout<<"Please enter student num, name, sez: ";
    cin>>num>>name>>sex;
}
void Student::display()
{
    cout<<"num: "<cout<<"name: "<cout<<"sex: "<int main()
{
    Student stu;
    stu.set_value();
    stu.display();
    system("pause");
    return 0;
}

你可能感兴趣的:(C++程序设计,(第三版),谭浩强,课后答案)