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

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    savings.h    **
  3. //*********************
  4. #ifndef SAVINGS
  5. #define SAVINGS
  6. #include "account.h"
  7. class Savings :public Account{
  8. public:
  9.   Savings(unsigned accNo, float balan=0.0);
  10.   virtual void Withdrawal(float amount);
  11. protected:
  12.   static float minbalance;
  13. };
  14. #endif