01.11.16 - 05.08.16
Introduction to Computer Programming
Tuesday Thursday
01:00 PM - 02:20 PM
Design for program is sound/program would function | 25 pts |
Pseudocode is valid and structured | 15 pts |
Program makes use of two appropriate modules | 10 pts |
Total | 50 pts |
Design a program using pseudocode that will allow a user to interact with a simulated bank account. The account will start with a 0 balance every time the program starts and the program is only responsible for dealing with the account's balance, don't worry about interest rates or anything other than the balance.
Your application should display the following menu for the user and continue to show them the menu after each of their choices are complete until the user chooses option 4 to quit. The user should be informed if they make an invalid choice and the menu should be redisplayed.
1. Show Balance
2. Deposit
3. Withdraw
4. Exit
1. The show balance option should allow the user to view the balance of their account.
2. and 3. The deposit and withdraw options should allow the user to deposit money in, or withdraw money from their account. To do this the user will need to be prompted for an amount. The amount the user enters needs to be a positive number for both deposit and withdraw and needs to be less than the balance for withdraw. After either option is successful the user should be able to see that their balance has changed by choosing option 1 from the menu.
4. Quit the application
Design your program so that it has at least two modules that are used in the execution of the program. The two modules should be appropriate and should follow the rules we've discussed for creating good modules.
The program should provide enough output/feedback to the user to be friendly and easy to use.