View Single Post
Old 01-03-2005, 11:38 AM   #9
piepsi
Newbie

 
Join Date: Feb 2005
Location: ,
Posts: 16
Default

I guess I still remember Basic :blink:

1)

PRINT "Type in somewhat and press Return"
INPUT a$
PRINT a$


2)

PRINT "Type in the first number and press Return"
INPUT a
PRINT "Type in the second number and press Return"
INPUT b
PRINT a+b
PRINT a*b
PRINT a/b
PRINT a-b


3)

PRINT "Type in the first number and press Return"
INPUT a
PRINT "Type in the second number and press Return"
INPUT b
PRINT b
PRINT a


4)
PRINT "Type in length of side a"
INPUT a
PRINT "Type in length of side b"
INPUT b
PRINT "Area is" , a*b
PRINT "Circumfence is" , a+a+b+b


Was it this that you were thinging about?
I do not know if it runs, last time i programmed it is 15 years ago
piepsi is offline                         Send a private message to piepsi
Reply With Quote