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

Java中的赋值运算符


public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three = one+two;

        three += one;

        three -= one;

        three *= one;

        three /= one;

        three %= one;

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

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

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

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

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

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

        

        

        

        

        

        

        

        

        

        

        

    

}

}

为什么等于0 而且还能下一章节

提问者:慕UI6028893 2017-12-26 14:23

个回答

  • 慕粉1521392026
    2017-12-26 14:30:43

    这一节你好像答案是错的也可以前往下一节