REM Earl T. wylie REM Date 9/12/00 REM Instructor Name Earl T. Wylie REM Assignment Chapter 1 Number 6 Page 30 REM REM Statement of problem : center vert and horz real estate menu on monitor REM Analysis IPO. REM REM Data Requirements REM REM Constants none REM REM Inputs none REM REM Outputs menu of real estate listings REM REM Variables none REM REM Formulas none REM REM Design REM REM Algorithm REM REM 1. create menu centered in the screen of real estate listings. REM 2. the print, print; print: print tab() statement will be used REM 3. additionally a for next loop will be used for formatting. REM 4. Etc. REM REM Implementation - here you begin to code. CLS prince = 500000 harry = 300000 REM Print followed by a colon means move the next print statement to the REM next line PRINT : PRINT : PRINT : PRINT TAB(30); "Real Estate Listings" FOR x = 1 TO 80 PRINT "-"; NEXT x PRINT : PRINT : PRINT "Price", "Bed/Bath", "Sq Ft", "Location", "Available" PRINT PRINT USING "$###,###"; prince; PRINT TAB(15); "4/3", "3500", "Fairfield", "Oct 2000" PRINT USING "$###,###"; harry; PRINT TAB(15); "5/4", "2500", "Suisun", "Sept 2000" END FOR x = 1 TO 80 PRINT "-"; NEXT x