这个该怎么写?
three = one + two; System.out.println(three); three += one; System.out.println(three); three -= one; System.out.println(three); three *= one; System.out.println(three); three /= one; System.out.println(three); three %= one; System.out.println(three);