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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // savings.h
  3. //=====================================
  4. #ifndef HEADER_SAVINGS
  5. #define HEADER_SAVINGS
  6. //-------------------------------------
  7. #include<string>
  8. using std::string;
  9. //-------------------------------------
  10. class Savings{
  11.   string acntNumber;
  12.   double balance;
  13. public:
  14.   Savings(string acntNo, double balan=0.0);
  15.   void deposit(double amount){ balance += amount; }
  16.   double getBalan()const{ return balance; }
  17.   void display()const;
  18.   void withdrawal(double amount);
  19. };//-----------------------------------
  20. #endif  // HEADER_SAVINGS
  21.