REM REM Date REM Instructor Name REM Assignment Chapter 1 Number 8 Page 30 REM REM Statement of problem : REM Analysis IPO. REM REM Data Requirements REM REM Constants REM REM Inputs REM REM Outputs blank sales receipt REM REM Variables REM REM Formulas REM REM Design REM REM Algorithm REM REM 1. REM 2. REM 3. REM 4. Etc. REM REM Implementation - here you begin to code. CLS studnetname$ = " " teachername$ = " " classname$ = " " counter1 = 0 test1 = 0 test2 = 0 test3 = 0 test4 = 0 test5 = 0 totaltest = 0 tetoalall = 0 studentaverage = 0 classaverage = 0 looper1$ = " " looper2$ = " " CLS MenuOption = 0 DO WHILE MenuOption <> 7 CLS PRINT PRINT PRINT " M E N U" PRINT "----------------" PRINT "1. Input Student Grade, Class name, & teacher, " PRINT "2. Display Class Grade Report" PRINT "3. OPTION 3" PRINT "4. OPTION 4" PRINT "5. OPTION 5" PRINT "6. OPTION 6" PRINT "7. EXIT PROGRAM" PRINT INPUT "YOUR CHOICE =>"; MenuOption SELECT CASE MenuOption CASE IS = 1 DO WHILE teachername$ <> "QUIT" INPUT "enter the teachers name"; teachername$ INPUT "Enter the class name"; classname$ DO WHILE studentname$ <> "QUIT" INPUT "Enter the class name"; classname$ INPUT "Enter the Students name"; studentname$ INPUT "enter test 1 score"; test1 INPUT "enter test 2 score"; test2 INPUT "enter test 3 score"; test3 INPUT "enter test 4 score"; test4 INPUT "enter test 5 score"; test5 INPUT "Enter quit to do another class, or touch anykey to continue"; studentname$ studentname$ = UCASE$(studentname$) LOOP INPUT "enter Quit to return to menu, else touch any key to continue"; teachername$ CASE IS = 2 PRINT "option 2" CASE IS = 3 PRINT PRINT "You selected option 3." CASE IS = 4 PRINT PRINT "You selected option 4." CASE IS = 5 PRINT PRINT "you have selected option 5" CASE IS = 6 PRINT PRINT "You have selected option 6" CASE IS = 7 PRINT PRINT "Thank you for using this program." CASE ELSE PRINT PRINT "Invalid Menu Option" END SELECT LOOP DATA .06 END REM Input Section REM Processing Section REM Output Section