int one = 10 ;
int two = 20 ;
int three = 0 ;
three = one + two ;
Systeam.out.println("three = one + two ==>"+three);
three += one ;
Syeteam.out.println("three += one ==>"+three);
three -= one ;
Systeam.out.println("three -= one ==>"+three);
three *= one ;
Systeam.out.println("three *= one ==>"+three);
three /= one ;
Systeam.out.println("three /= one ==>"+three);
three %= one ;
Systeam.out.println("three %= one ==>"+three);
所有的System都错误的打成了Systeam
可能是steam玩多了
可能是steam玩多了