How to input numbers
Posted: Wed Mar 29, 2017 1:27 pm
I want to write a simpel mathematic program. But I don't know how to Input numbers.
open console()
a$=input()
b$=input()
a=Val(a$)
b=Val(b$)
if I input a$ as 1.5 and b$ as 2
debug a *b
aswer will be 2
min question is : How I can input numeric values
I've programmed in Liberty Basic and no problem with this

open console()
a$=input()
b$=input()
a=Val(a$)
b=Val(b$)
if I input a$ as 1.5 and b$ as 2
debug a *b
aswer will be 2
min question is : How I can input numeric values
I've programmed in Liberty Basic and no problem with this

