When comparing floating point numbers, make sure you round to an acceptable level of rounding for the type of application you are using.
Languages Focus: Comparison Operators
A comparison operator compares two values either literals as in "Hello" and 3 or variables as in X and Counter. Most languages use the same operators for comparing both numbers and strings. Perl, for example, uses separate sets of comparison operators for numbers and strings.
Delphi Prism Comparison Operators
Same as Delphi. Common comparison operators:
=
equal
<>
not equal
<
less than
>
greater than
<=
less than or equal
>=
greater than or equal
Syntax Example:
//Does Prism evaluate the math correctly? No!
//This is different than later versions of
//Delphi that muse MaxSingle in math.pas.
If .1 + .1 + .1 = .3 Then MessageBox.Show("correct") Else MessageBox.Show("not correct");