gpt4 book ai didi

c++ - 为什么我的银行管理系统不能正常工作?

转载 作者:行者123 更新时间:2023-11-28 01:17:42 24 4
gpt4 key购买 nike

所以,我正在用 C++ 制作这个银行管理系统,我必须为用户提供创建帐户、存款、取款和显示详细信息的选项。我还需要存储在对象数组中,以便在用户退出后可以显示整个数据。限制是我不能使用文件处理。但它无法正常工作。

请帮忙。

当我运行它时,它一直要求我输入全名。我该如何解决这个问题?我觉得这个问题的发生是因为 persons array of type bankaccount,但我没有看到任何其他可能的方法来做到这一点。我删除了一些功能的细节,因为它变成了冗长的代码块。

#include<iostream>
#include<string>
#include <time.h>
#include <cstdlib>
using namespace std;
class bankaccount {
private:
int id;
string name;
int cash;
int money;
int age;
public:
string get_name() {
return name;
}
int get_id() {
return id;
}
void withdraw();
void deposit();
int see_money();
bankaccount(int id1) {
id = id1;

cout << "\n Enter Full Name:";
getline(cin, name);

}
friend ostream& operator<<(ostream& os, const bankaccount& d);




};

ostream& operator<<(ostream& os, bankaccount& d) {
os << "\n Your name is:" << d.get_name();
os << "\n Your id is:" << d.get_id();
os << "\n You have a total of : " << d.see_money();
}
int main() {
bankaccount persons[100] = 0;
int option;
int id;
int number = 0;
cout << "BANKING MANAGEMENT SYSTEM!" << endl;
cout << "-------------------------------------------------------------------------------";
while (1) {

cout << "\nEnter 1 to create an account. Enter 2 to deposit money. Enter 3 to withdraw money. Enter 4 to check money. Enter 5 to display. Enter 6 to exit";
cin >> option;
switch (option) {
case 1: {

bankaccount p(number);
persons[number] = p;

cout << "Your ID is:" << number << endl;
number++;
break;
}
case 2: {
cout << "\n Enter Your ID:";
cin >> number;


persons[number].deposit();
break;
}
case 3: {
cout << "\n Enter Your ID:";
cin >> number;
persons[number].withdraw();
break;
}
case 4: {
cout << "\n Enter Your ID:";
cin >> number;
persons[number].see_money();
break;
}
case 5: {
cout << "\n Enter Your ID:";
cin >> number;
cout << persons[number];
break;
}
}
}
}

Here is the output:

最佳答案

银行账户人员[100]=0;

在这里,您构建了 bankaccount 的 100 个对象。

您的bankaccount 构造函数有以下两行:

cout<<"\n Enter Full Name:";
getline(cin,name);

因此,每次创建 bankaccount 对象时,系统都会提示您输入其名称。你可能不是故意的。您需要将其分离,因此要求用户提供全名、将其分配给银行账户以及构建银行账户对象是分开的。

例如您可以创建选项 6 来为银行帐户分配名称,而不是在 bankaccount 类的构造函数中执行此操作。

关于c++ - 为什么我的银行管理系统不能正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58098798/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com