📄 term.h
字号:
//#ifndef term
//#define term
#include"account.h"
enum TIME{OneYear,ThreeYear,FiveYear};
class TermAccount:public Account
{
public:
TermAccount(unsigned accNo,float balan=0.0);
virtual void Withdrawal(float);
virtual void Display();
virtual void Deposit(float amount);
protected:
TIME term; //存款时间
int maturity_sign; //是否到期
int time_to_now;
};
//#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -