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


Code: Select all
OpenConsole()
a$=Input()
b$=Input()
a.f=ValF(a$)
b.f=ValF(b$)
Debug a*b
Code: Select all
/code][/color][/b] tag :wink: