Re: TIB: whole # to decimal


[Prev][Next][Index][Thread]

Re: TIB: whole # to decimal




In a message dated 4/22/99 1:57:29 PM Pacific Daylight Time, 
monkey_inc@geocities.com writes:

> 
>  In my prog I want the user to enter a number but the calc to consider
>  that # a decimal 
>  For example:  User enters 75(A)
>  	      Calc thinks .75
>  how do i do this
>  
>  
try this
input A
Lbl LOOP
A /10\->\A
If A>1
Goto LOOP
Disp A

a is now a decimal