Possible Duplicate:
Why does this subtraction not equal zero?
I just came across a weird situation. Why is below code not returning 0? Instead it's returning a very small negative number.
<cfset x = 5448.10-3311.23-2136.87>
<cfoutput>x=#x#</cfoutput>
Above code will output: x=4.54747350886E-013
I ran above code both in CF9 and CF10 with the same results.
Any help is greatly appreciated.