a萧萧兮易水寒
2015-06-10 13:56
three=one+tuo;
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 %=three;
System.out.println("three %=three ==>"+three);
后面为什么还要+three 啊
没作用就是个字符串
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题