上传者: 43934844
|
上传时间: 2022-06-20 14:04:40
|
文件大小: 1KB
|
文件类型: TXT
例1.4 包含类的C++程序。 #include // 预处理命令 using namespace std; class Student // 声明一个类,类名为Student {private: // 以下为类中的私有部分 int num; // 私有变量num int score; // 私有变量score public: // 以下为类中的公用部分 void setdata( ) // 定义公用函数setdata {cin>>num; // 输入num的值 cin>>score; // 输入score的值 } void display( ) // 定义公用函数display {cout<< num= <