0
Why does it print 0?
double d = 100 / 1625; System.out.println(d); // 0.0 ... and on the calculator it prints 0,061538 How can i get this output in java?
0 Answers
double d = 100 / 1625; System.out.println(d); // 0.0 ... and on the calculator it prints 0,061538 How can i get this output in java?