我有简单的代码来测试,请检查以下内容。为什么我的代码没有返回预期结果。
public class test {
public static void main(final String a[]) {
final double d1 = 1 / 1000; // should be 0.001
final double d2 = 2 / 20; // should be 0.1
System.out.println(d1 + "--" + d2); // 0.0--0.0
}
}