Fix Lesson 2 Task 1

This commit is contained in:
Stanislav Mykhailenko 2024-07-20 14:58:27 +03:00
parent 70cc836f05
commit 52c071c46c
GPG key ID: 1E95E66A9C9D6A36

View file

@ -15,32 +15,41 @@ int main()
cout << "Enter action (1 - add money, 2 - remove money, 3 - display all balances): ";
cin >> action;
if (action == 1 || action == 2) {
if (action < 1 || action > 3) {
cout << "Invalid action" << endl;
continue;
}
if (action != 3) {
int number = 0;
int money = 0;
cout << "Enter account number: ";
cin >> number;
if (number >= 0 && number < 10) {
cout << "Enter the amount of money: ";
cin >> money;
if (money > 0) {
if (action == 1) {
accounts[number] += money;
cout << "Money added." << endl;
} else if (accounts[number] >= money) {
accounts[number] -= money;
cout << "Money removed." << endl;
} else
cout << "Not enough money." << endl;
} else
cout << "The amount must be positive." << endl;
} else
if (number < 0 || number > 10) {
cout << "Invalid account number." << endl;
} else if (action == 3) {
continue;
}
cout << "Enter the amount of money: ";
cin >> money;
if (money <= 0) {
cout << "The amount must be positive." << endl;
continue;
}
if (action == 1) {
accounts[number] += money;
cout << "Money added." << endl;
} else if (accounts[number] >= money) {
accounts[number] -= money;
cout << "Money removed." << endl;
} else
cout << "Not enough money." << endl;
} else
for (int account = 0; account < 10; ++account)
cout << "Account " << account << ": " << accounts[account] << endl;
} else
cout << "Invalid action." << endl;
}