Create a java program using user-defines methods that will perform the 3 major functionalities of an Automated Teller Machine(Withdraw, Deposit, Balance Check) 1. Withdraw * Input the amount to be withdrawn. Compute for the remaining balance after the operation (balance = balance - withdrawn) 2. Deposit * Input the amount to be deposited. Compute for the updated balance after the operation (balance = balance + deposit) 3. Balance Check * Display the remaining balance. Use the following method names: Withdraw, Deposit, Check Balance Sample Output: (Items in bold are input from the use while the items in bold italic are calculated and printed by the program.) ---------------------ATM---------------- 1. Withdraw 2. Deposit 3. Check Balance 4. EXIT Choose operation: 1 Enter amount to be withdrawn: 1000 Collect your money Check Balance? 1. Yes 0. No: 1 Balance: 4000 ---------------------ATM---------------- 1. Withdraw 2. Deposit 3. Check Balance 4. EXIT Choose operation: 2 Enter amount you want to deposit: 500 Check Balance? 1. Yes 0. No: 0 ---------------------ATM---------------- 1. Withdraw 2. Deposit 3. Check Balance 4. EXIT Choose operation: 3 Balance: 4500 ---------------------ATM---------------- 1. Withdraw 2. Deposit 3. Check Balance 4. EXIT Choose operation: 1 Enter amount to be withdrawn: 6000 Insufficient Balance Check Balance? 1. Yes 0. No: 1 Balance: 4500
Create a java program using user-defines methods that will perform the 3 major
functionalities of an Automated Teller Machine(Withdraw, Deposit, Balance Check)
1. Withdraw
* Input the amount to be withdrawn. Compute for the remaining balance after
the operation (balance = balance - withdrawn)
2. Deposit
* Input the amount to be deposited. Compute for the updated balance after
the operation (balance = balance + deposit)
3. Balance Check
* Display the remaining balance.
Use the following method names: Withdraw, Deposit, Check Balance
Sample Output: (Items in bold are input from the use while the items in bold italic are calculated and printed by the program.)
---------------------ATM----------------
1. Withdraw
2. Deposit
3. Check Balance
4. EXIT
Choose operation: 1
Enter amount to be withdrawn: 1000
Collect your money
Check Balance?
1. Yes 0. No: 1
Balance: 4000
---------------------ATM----------------
1. Withdraw
2. Deposit
3. Check Balance
4. EXIT
Choose operation: 2
Enter amount you want to deposit: 500
Check Balance?
1. Yes 0. No: 0
---------------------ATM----------------
1. Withdraw
2. Deposit
3. Check Balance
4. EXIT
Choose operation: 3
Balance: 4500
---------------------ATM----------------
1. Withdraw
2. Deposit
3. Check Balance
4. EXIT
Choose operation: 1
Enter amount to be withdrawn: 6000
Insufficient Balance
Check Balance?
1. Yes 0. No: 1
Balance: 4500
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images