Java中的赋值运算符

来源:3-3 Java中的赋值运算符

慕UI6028893

2017-12-26 14:23


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 而且还能下一章节

写回答 关注

1回答

  • 慕粉1521392026
    2017-12-26 14:30:43
    这一节你好像答案是错的也可以前往下一节

    慕UI602...

    是啊,什么问题?

    2017-12-27 12:15:32

    共 1 条回复 >

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题