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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // checking.h
  3. //=====================================
  4. #ifndef HEADER_CHECKING
  5. #define HEADER_CHECKING
  6. //-------------------------------------
  7. #include<string>
  8. using std::string;
  9. //-------------------------------------
  10. enum REMIT{remitByPost, remitByCable, other}; //信汇, 电汇, 无
  11. //-------------------------------------
  12. class Checking{
  13.   string acntNumber;
  14.   double balance;
  15.   REMIT remittance;
  16. public:
  17.   Checking(string acntNo, double balan=0.0);
  18.   void display()const;
  19.   void deposit(double amount){ balance += amount; }
  20.   double getBalan()const{ return balance; }
  21.   void withdrawal(double amount);
  22.   void setRemit(REMIT re){ remittance = re; }
  23. };//-----------------------------------
  24. #endif  // HEADER_CHECKING
  25.