REM Earl T. Wylie REM Date 9/11/00 REM Instructor Name Earl T. Wylie REM Assignment Chapter 1 Number 6 Page 30 REM REM Statement of problem : center menu on screen for real estate listings. REM Analysis IPO. REM REM Data Requirements REM REM Constants none REM REM Inputs none REM REM Outputs menu on screen center with real estate listings REM REM Variables none REM REM Formulas none REM REM Design REM REM Algorithm REM REM 1. create menu of real estates listings with print, print tab(). REM 2. output to monitor REM 3. REM 4. Etc. REM REM Implementation - here you begin to code. CLS REM input section REM processing section REM output section PRINT : PRINT : PRINT TAB(34); "Real Estate Menu" FOR x = 1 TO 80 PRINT "-"; NEXT x PRINT "Value", "SQ Ft", "address", "Date" PRINT PRINT "200,000", "2100", "5 main st", "9/10?00" FOR x = 1 TO 80 PRINT "-"; NEXT x END