System.out.println("three = one + two ==>" + three);??????? three =+ one;??????? System.out.println("three =+ one ==>" + three);??????? three -= one;??????? System.out.println("three -= one ==>" + three);??????? three *= one;??????? System.out.println("three *= one ==>" + three);??????? three /= one;??????? System.out.println("three /= one ==>" + three);??????? three %= one;??????? System.out.println("three %= one ==>" + three);

慕后端6985466
2016-07-01
2 回答
舉報
0/150
提交
取消
2016-07-01
three指的是前面你的公式中three=+one的three的值
2016-07-02
在這==》three是前面公式的值。。。