doctor.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // doctor.h
  3. //=====================================
  4. #ifndef HEADER_DOCTOR
  5. #define HEADER_DOCTOR
  6. //-------------------------------------
  7. #include"graduatestudent.h"
  8. #include<iostream>
  9. //-------------------------------------
  10. class Doctor : public GraduateStudent{
  11. public:
  12.   Doctor(string pName="noName"):GraduateStudent(pName){ type = DOCTOR; }
  13.   void calcTuition(){std::cout<<"Doctor tuition calculation.n";}
  14. };//-----------------------------------
  15. #endif  // HEADER_DOCTOR
  16.