问答详情
源自:3-3 Java中的赋值运算符

化繁琐为简洁

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);

}

}

如何省略繁琐的一问一答的形式,直接在结尾总结出来!但是得出的结果形式差不多!

提问者:努力的大叔 2018-10-12 17:48

个回答

  • 努力的大叔
    2018-10-12 18:37:03

    具体如何书写呢?

  • jus
    2018-10-12 18:25:24

    可以用数组将每次的three结果都存下,最后用循环输出