⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 term.h

📁 C++作业 完成一些简单的图形及其输入输出的功能 对于大学本科生做课程设计又很大帮助
💻 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 + -