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

C#编程

开发平台:

Visual C++

  1. #ifndef FIXEDDEPOSIT
  2. #define FIXEDDEPOSIT
  3. #include "i:c++答案ch16savings.h"
  4. #include <time.h>
  5. class Fixed :public Savings{
  6. public:
  7. Fixed(unsigned accNo,float balan=0.0);
  8. virtual void Withdrawal(float amount);
  9. bool VerifyDate() const;
  10. protected:
  11. float rate;
  12. char validDay[9];
  13. };
  14. #endif