RoseCard.cpp
资源名称:ATM.rar [点击查看]
上传用户:szmwdq
上传日期:2022-07-16
资源大小:528k
文件大小:1k
源码类别:
金融证券系统
开发平台:
Visual C++
- // RoseCard.cpp: implementation of the RoseCard class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "RoseCard.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- RoseCard::RoseCard(REMIT r,string n,int c,float b,string ba):BankCard(n,c,b,ba)
- {remat=r;}
- void RoseCard::setRemit(REMIT re)
- {
- remat=re;
- }
- void RoseCard::display()
- {
- cout<<"玫瑰卡用户"<<endl;
- cout<<"卡号:"<<getNum()<<endl;
- cout<<"帐户余额:"<<getBalance()<<endl;
- cout<<"所属银行:"<<getBank()<<endl;
- cout<<"汇款类型:"<<remat<<endl;
- }
- void RoseCard::withdrawal(double a)
- {
- double b=getBalance();
- //信汇30元手续费
- if(remat==remitByPost)
- a += 30;
- //电汇60元手续费
- if(remat==remitByCable)
- a += 60;
- if(b < a)
- cout <<"资金不足! "<<endl;
- else
- b -= a;
- setBalance(b);
- }
- RoseCard::~RoseCard()
- {
- }