term.h
来自「C++作业 完成一些简单的图形及其输入输出的功能 对于大学本科生做课程设计又很大」· C头文件 代码 · 共 20 行
H
20 行
//#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 + =
减小字号Ctrl + -
显示快捷键?