Comparing <code>double</code> values with <code>==</code> is
- A
Always reliable
- B
Same as comparing ints
- C
Compile error
- Dcheck_circle
Risky due to round-off — prefer Math.abs(a - b) < ε
Explanation
Floating point round-off can break equality; check within tolerance.