问答详情
源自: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=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%=one;

        System.out.println("three%=one==>"=three);

        

        

        

        

        

    

}


提问者:qq_慕粉7315974 2019-08-03 11:22

个回答

  • 慕移动1325614
    2019-08-21 11:29:35

    研究了半开,终于搞出来出题人的答案。

    https://img1.mukewang.com/5d5cba7900013ced14410520.png

  • 小破仁求轻虐
    2019-08-05 11:57:36

    因为在你定义three的过程中,one不变,但three是一直在变的,你可以根据这些运算符算一算,就能知道了。

  • qq_慕粉7315974
    2019-08-03 11:24:26

     int one = 10 ;

            int two = 20 ;

            int three = 0 ;

    53605c560001a9fb02230112.jpg

    怎么计算出现的300/40这些的数字