我在做这个项目 银行系统 这个系统跟踪客户在银行的账户。每个帐户都有一个编号、名称和余额。系统提供以下功能:创建新账户、提现、存款和关闭账户。
系统有如下界面:
选择:
1- 添加新账户
2- 提现
3- 存款
4- 获取余额
5- 退出
当用户选择1时,系统生成一个新ID,然后要求用户输入一个名字为那个帐户。初始余额设置为零。
当用户选择 2时,系统要求用户输入账户 ID 和提款金额。如果此金额大于余额,则会显示此交易因余额不足而失败的消息。如果余额足够,它会减少要提取的金额。
当用户选择 3 时。系统要求用户输入帐户 ID 和要存入的金额。系统按此金额增加余额。
当用户选择 4时,系统要求用户输入账户 ID,然后打印账户名称和余额。
每完成一项任务,系统就会返回上面的主菜单,直到用户选择 5。
# include <iostream>
#include <string>
using namespace std;
# include<iomanip>
class Bank
{
private:
char name;
int acno;
float balance;
public:
void newAccount();
void withdraw();
void deposit();
void getbalance();
void disp_det();
};
//member functions of bank class
void Bank::newAccount()
{
cout<<"New Account";
cout<<"Enter the Name of the depositor : ";
cin>>name;
cout<<"Enter the Account Number : ";
cin>>acno;
cout<<"Enter the Amount to Deposit : ";
cin >>balance;
}
void Bank::deposit()
{
float more;
cout <<"Depositing";
cout<<"Enter the amount to deposit : ";
cin>>more;
balance+=more;
}
void Bank::withdraw()
{
float amt;
cout<<"Withdrwal";
cout<<"Enter the amount to withdraw : ";
cin>>amt;
balance-=amt;
}
void Bank::disp_det()
{
cout<<"Account Details";
cout<<"Name of the depositor : "<<name<<endl;
cout<<"Account Number : "<<acno<<endl;
cout<<"Balance : $"<<balance<<endl;
}
// main function , exectution starts here
void main(void)
{
Bank obj;
int choice =1;
while (choice != 5 )
{
cout<<"Enter \n 1- to create new account \n 2- Withdraw\n 3- Deposit \n 4- get balance\n 5 Exit"<<endl;
cin>>choice;
switch(choice)
{
case '1' :obj.newAccount();
break;
case '2' :obj.withdraw();
break;
case 3: obj.deposit();
break;
case 4: getbalance();
break;
case 5:
break;
default: cout<<"Illegal Option"<<endl;
}
}
}