Question: PROJECT 2 – ATM MACHINE
For this project, you will be building an ATM application that will allow users to log in, deposit, withdraw, and check their balance. Set a default beginning balance of $1000. I want all monies formatted to currency.
Log in: Usernames and passwords need to be stored in parallel arrays. At least three logins available for me. The user is allowed only 3 attempts at the password, and it terminates after that.
The actual login will also be a method.
Deposit: Must be a method. Are they depositing cash, checks, or both? (Hint: looping needed) If checks, how many? (Hint: looping)
After the user is finished with the deposit, you will show the total amount of the deposit and the new balance.
Withdraw: Must be a method. After withdrawal, show the amount withdrawn and the new balance.
Check balance: Show the current balance.
The program must loop until the user says they have no more transactions to make.
THIS MUST BE IN C# Programming!
Please also include the TryParse.