qq_灬说谎人丿_0
2018-05-31 22:00
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玩多了
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题