help please, im stuck
You are a Jr. programmer at AIT Savings and Loan – a newly formed bank by a group of students wanting to make some extra money. The bank offers a number of services including checking accounts, savings accounts, credit cards, and home mortgages. You have been asked to write a program that helps with transaction processing associated to checking and savings accounts. In the program, you will ask for the initial balances of the bank accounts (checking and savings). If either of the initial balances is negative, you must inform the customer they should contact the bank’s customer service department. Once the balances have been gathered, the user may perform one of the following actions: make a deposit to one of the accounts, make a withdrawal from either account, or transfer money from one account to the other. The user must be able then specify the dollar amount for the transaction. Of course, if any transaction would overdraw an account, it should be rejected. Once the transaction is complete, the user should be informed of the balances of both accounts.
-- Start program --
READ User balances of bank accounts
IF balance is negative
PRINT You must contact bank’s customer service department
END IF
ELSE
DISPLAY BUTTON Create deposit
DISPLAY BUTTON Make withdrawal
DISPLAY BUTTON Transfer money
i dont know what goes next and is this right so far?