I tried to print the float variable's value.
But the result is weird...
float num1 = 45.9f;
float num2 = 32.1f;
System.out.printf("%f, %f", num1, num2);
// Expected: 45.9, 32.1
// Result: 45.900002, 32.099998
Why does appear like that??
Sorry for the question...