努力的大叔
2018-10-12 17:48
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
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);
}
}
如何省略繁琐的一问一答的形式,直接在结尾总结出来!但是得出的结果形式差不多!
具体如何书写呢?
可以用数组将每次的three结果都存下,最后用循环输出
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题