Re: TIB: lots of help needed
[Prev][Next][Index][Thread]
Re: TIB: lots of help needed
>>> Basically, the calc views a 0 as a 0, and EVERY OTHER NUMBER as 1.
>>
>> Everything less than one is false including negative numbers. 1 and
>> greater is true.
>
> I think this is false.
I stand corrected.
:If 1
:Disp "1"
:If .9
:Disp ".9"
:If .1
:Disp ".1"
:If 0
:Disp "0"
:If -1
:Disp "-1"
:If -100
:Disp "-100"
:If 100
:Disp 100
Resulted in: (on a TI-86 ROM 1.2)
1
.9
.1
-1
-100
100
The only missing one was zero. I apologise.
Follow-Ups: