Bank Account Part 1

1. Introduction

Your task is to make a bank account app. This app will have a login screen that will bring the user to a page which displays their balance and has the feature to deposit money, or withdraw money. Note that the login page is simply a button that logs the user in, no need for a username and password at this point. Also be aware of things like trying to withdraw too much! Your program should be able to handle that. Lastly, you are only allowed to use one global variable in your program, that's it!

Here is an example of what your program should look like when it is complete:

Please note that this app only works every instance of that app. That means if you start with a balance of $0 and deposit $100, but then close out of the program and run it again, you will again start at $0. Leave it like that for now.

Make Sure You Use

Next
Back