Ok Heres the Code
`Camerons Calulator Beta V1.0"
`Common Setups
set window on
set window title "Cameron's Calculator Beta V1.0"
set text size 20
`Main Program
start:
Input "Enter Operand, + Addition, - Subtraction, / Division, * Multiplication ", operand#
Input "Enter First Number ", num1#
Input "Enter Second Number ", num2#
do
if operand# = + then goto add
if operand# = - then goto subtract
if operand# = * then goto multiply
if operand# = / then goto divide
loop
add:
print "The Sum Of ", num1#, " And ", num2#, " Is ", num1# + num2#
wait 3000
goto start
subtract:
print "The Difference Of ", num1#, " And ", num2#, " Is ", num1# - num2#
wait 3000
goto start
multiply:
print "The Product Of ", num1#, " And ", num2#, " Is ", num1# * num2#
wait 3000
goto start
divide:
print "The Quotient Of ", num1#, " And ", num2#, " Is ", num1# / num2#
wait 3000
goto start
Its all good but one prob. if i do addition it works but if i do subtraction for multiply etc. it just goes to add. y?