我正在编写一个程序,它将请求用户输入 INT,并将其存储在 [10] 的数组中。我希望能够让用户选择选项 DISPLAY 并查看数组中的所有数据。我只是想不通,这是我到目前为止所拥有的:
case 2 : {
int SamtW;
cout << " Please enter how much you would like to withdraw "<< endl;
cin >> SamtW;
sa.doWithdraw(SamtW);
break;
}
这是上面调用的函数:
int saving:: doWithdraw(int amount)
{
for (int i = 0; i < 10; i++)
{
last10withdraws[amount];
}
if (amount > 1)
{
setBalanceW(amount);
}
else {
cout << " ERROR. Number must be greater then zero. " << endl;
}
return 0;
}
我相信这会将用户输入放入字符串 last10withdraws 中。然后我希望用户能够调用这个函数:
string saving::display()
{
last10withdraws[10];
return 0;
}
这将有望显示数组的内容。关于我做错了什么的任何想法?