📄 doctor.h
字号:
//=====================================
// doctor.h
//=====================================
#ifndef HEADER_DOCTOR
#define HEADER_DOCTOR
//-------------------------------------
#include"graduatestudent.h"
#include<iostream>
//-------------------------------------
class Doctor : public GraduateStudent{
public:
Doctor(string pName="noName"):GraduateStudent(pName){ type = DOCTOR; }
void calcTuition(){std::cout<<"Doctor tuition calculation.\n";}
};//-----------------------------------
#endif // HEADER_DOCTOR
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -