Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
need help with qbasic print areas
#1
could someone please walk me through how to make a table using qbasic please add me on msn rs2maniak500@hotmail.com or post here

heres what i have i just cant figure out how to put the output section into a table

REM *****calculating area and perimeter of squares*****
REM David Rosenberg
REM 3/5/09
COLOR 25,7
CLS

REM INPUT

LET sport1$ = football
LET length1 = 360
LET width1 = 190

LET sport2$ = baseball
LET length2 = 94
LET width 2 = 50



REM PROCESSING
LET perimeter1$ = 2*length1+2*width1
LET area$ = length1*width1
LET perimeter2$ = 2*length2+2*width2
LET area2$ = length2*width2




REM OUTPUT

PRINT "The length (feet) of a football field is: " length1
PRINT "The width (feet) of a football field is: "; width1
PRINT "The perimeter (feet) of a football field is: " perimeter1
PRINT "The area (square feet) of a football field is: ";area1
PRINT
PRINT "The length (feet) of a basketball court is "; length2
PRINT "The width (feet) of a basketball court is: "; width2
PRINT "The perimeter (feet) of a basketball court is: "; perimeter2
PRINT "The area (square feet) of a basketball court is: "; area2



END
Reply


Messages In This Thread
need help with qbasic print areas - by qbasicnewbie - 03-09-2009, 01:18 AM
Re: need help with qbasic print areas - by Moneo - 03-09-2009, 05:09 AM
Re: need help with qbasic print areas - by Clippy - 03-09-2009, 10:50 PM
Re: need help with qbasic print areas - by Ralph - 03-12-2009, 03:47 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)