double p1 = 1.3
if p1 = 1.3 then
print "equals!"
else
print str(p1) " is not equal to " 1.3
end if
single p1 = 1.3
if p1 = 1.3 then
print "equals!"
else
print str(p1) " is not equal to " 1.3
end if
uses corewin
char c[32]
sprintf( c,"%0.3f", convert double pi() )
print c '3.142
function approx(float a,b,e) as int
===================================
'a first number
'b second number to compare with
'e error factor
e+=1
if (a<=b*e)and(a>=b/e)
return 1
endif
end function
print approx( 1.2, 1.21, 0.01) '1
print approx( 1.2, 1.22, 0.01) '0
Code: Script BASIC
a = FORMAT("%0.1f",0.3) + FORMAT("%0.1f", 0.3) + FORMAT("%0.1f", 0.3)