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
Hi David, here's a few comments.
1) You don't need to use LET anymore, although it will work. LET was used on very old versions of Basic.
2) Your variables SPORT1$ and SPORT2$ are never used. Delete these lines.
3) Your variables PERIMITER1$, AREA1$, PERIMITER2$ and AREA2$ shoulld be numeric vaiables not string variables. You later refer to them as numeric varriables, which is correct.
4) You mention wanting to create a table. Why would you need a table?
5) If you fix the variables, your program will work fine as is.
Regards..... Moneo