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

C#编程

开发平台:

Visual C++

  1. //***********************
  2. //**    savings.cpp    **
  3. //***********************
  4. #include <iostream.h>
  5. #include "account.h"
  6. #include "savings.h"
  7. float Savings::minbalance=500.0;     //设置透支范围
  8. Savings::Savings(unsigned accNo, float balan)
  9.   :Account(accNo, balan){}
  10. void Savings::Withdrawal(float amount)
  11. {
  12.   if(balance+minbalance<amount)
  13.     cout <<"Insufficient funds withdrawal: " <<amount <<endl;
  14.   else
  15.     balance-=amount;
  16. Display();
  17. }