prog8/examples/comparison_ifs_float.p8
2020-08-27 18:10:22 +02:00

110 lines
2.5 KiB
Lua

%import c64textio
%import c64flt
%zeropage basicsafe
main {
sub start() {
float v1
float v2
v1 = 1.11
v2 = 699.99
if v1==v2
txt.print("error in 1.11==699.99!\n")
else
txt.print("ok: 1.11 not == 699.99\n")
if v1!=v2
txt.print("ok: 1.11 != 699.99\n")
else
txt.print("error in 1.11!=699.99!\n")
if v1<v2
txt.print("ok: 1.11 < 699.99\n")
else
txt.print("error in 1.11<699.99!\n")
if v1<=v2
txt.print("ok: 1.11 <= 699.99\n")
else
txt.print("error in 1.11<=699.99!\n")
if v1>v2
txt.print("error in 1.11>699.99!\n")
else
txt.print("ok: 1.11 is not >699.99\n")
if v1>=v2
txt.print("error in 1.11>=699.99!\n")
else
txt.print("ok: 1.11 is not >=699.99\n")
v1 = 555.5
v2 = -22.2
if v1==v2
txt.print("error in 555.5==-22.2!\n")
else
txt.print("ok: 555.5 not == -22.2\n")
if v1!=v2
txt.print("ok: 555.5 != -22.2\n")
else
txt.print("error in 555.5!=-22.2!\n")
if v1<v2
txt.print("error in 555.5<-22.2!\n")
else
txt.print("ok: 555.5 is not < -22.2\n")
if v1<=v2
txt.print("error in 555.5<=-22.2!\n")
else
txt.print("ok: 555.5 is not <= -22.2\n")
if v1>v2
txt.print("ok: 555.5 > -22.2\n")
else
txt.print("error in 555.5>-22.2!\n")
if v1>=v2
txt.print("ok: 555.5 >= -22.2\n")
else
txt.print("error in 555.5>=-22.2!\n")
v1 = -22.2
v2 = -22.2
if v1==v2
txt.print("ok: -22.2 == -22.2\n")
else
txt.print("error in -22.2==-22.2!\n")
if v1!=v2
txt.print("error in -22.2!=-22.2!\n")
else
txt.print("ok: -22.2 is not != -22.2\n")
if v1<v2
txt.print("error in -22.2<-22.2!\n")
else
txt.print("ok: -22.2 is not < -22.2\n")
if v1<=v2
txt.print("ok: -22.2 <= -22.2\n")
else
txt.print("error in -22.2<=-22.2!\n")
if v1>v2
txt.print("error in -22.2>-22.2!\n")
else
txt.print("ok: -22.2 is not > -22.2\n")
if v1>=v2
txt.print("ok: -22.2 >= -22.2\n")
else
txt.print("error in -22.2>=-22.2!\n")
}
}