3-3练习题

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

空空白白的坚持

2017-06-03 22:30

怎么做

写回答 关注

2回答

  • 乱七八糟的代码
    2017-07-07 16:39:56

    public static void main(String[] args) {
         int one = 10 ;
            int two = 20 ;
            int three = 0 ;
            int three=one+two;
            System.out.println("three=one+two==>"+three);
            int three+=one;
            System.out.println("three+=one==>"+three);
            int three-=one;
            System.out.println("three-=one==>"+three);
            int three*=one;
            System.out.println("three*=one==>"+three);
            int three/=one;
            System.out.println("three/=one==>"+three);
            int three%=one;
            System.out.println("three%=one==>"+three);
     }
    }

  • qq_呵呵_5
    2017-06-03 23:21:24

    three = one + two;

            three += one;

            three -= one;

            three *= one;

            three /= one;

            three %= one;


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

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

1165172 学习 · 17581 问题

查看课程

相似问题

3-3练习题

回答 1

3-3练习题

回答 2

3-8练习题

回答 2

3-3 习题

回答 1