int m = 5; int n = 7; int x=(m*8/(n+2))%m; System.out.println("m:" + m); System.out.println("n:" + n); System.out.println("x:" + x);怎么理解第三行? 查看完整描述