Assignment title: Management


Message : Write a visual logic program to help balance a customer's bank account. the program should read numeric values that represent banking transactions. Special sentinel values will be read to indicate display-current-balance (8888) and end-of-the-month (9999) activities. In addition, the program solution should conform to the following requirements : -the first value read is the starting balance -the program will then read integer values one at a time until the end-of-the-month sentinel value is read -negative numbers are checks that reduce the account balance -positive numbers are deposits that add to the account balance -any time a check is processed and the resulting balance is negative, the check bounces and there is a $10 fee assessed to the account -when the user inputs the special value 8888, the program should NOT treat this as a deposit but instead should display the current account balance with a message -when the user inputs the special value 9999, the program should NOT treat this as a deposit, but instead should calculate the monthly service fee, which is either $10 or 10 percent of the account balance, whichever is smaller the program should display the monthly service fee and the end-of-the-month balance with two messages - the porgram ends after displaying the end of the month account balance.