C++实现程序设计银行储蓄管理系统。 要交实验报告,急急急。 具体要求见下图

2024-12-30 21:15:00
推荐回答(1个)
回答1:

很简单的题。
写一个类,然后用控制台程序调用一下即可。
class Account
{
public:
Acount();
~Account();
WORD Open(char *szName, byte *pbPwd, char* szTel, int nAmount);
WORD Close(char* szAccount);
WORD Destroy(char* szAccount);
WORD Deposit(char* szAccount, int nAmount);
WORD WithDraw(char* szAccount, int nAmount);
WORD History(char* szAccount, time_t beg, time_t end);
private:
int m_nBalance;
char m_szName[16];
char m_szAccount[20];
BYTE m_pbPwd[6];
char m_sztel[12];
byte m_bState;
FILE m_fLog;
}