下面是代码,我想知道为什么它给出的输出是2.0而不是0.0?class Main { public static void main(String[] args) { double x = 5*4/2 - 5/2*4; System.out.println(x); }} 查看完整描述