We use cookies to collect and analyze information on site performance and usage, to provide social media features and to enhance and customize content and advertisements.
Got it
System.out.println( 1.33 - 1.3 ); // output : 0.030000000000000027
The easiest way to solve this limitation is to the BigDecimal class :
import java.math.BigDecimal; ... System.out.println (BigDecimal.valueOf(1.33).subtract(BigDecimal.valueOf(1.3)));