帮看看对吗

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

qingan

2018-09-12 20:00

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

写回答 关注

2回答

  • H慧
    2018-09-12 20:30:47
    已采纳

    three=one+two;

    three%=one;

    这两处的分号你用的中文格式。

    qingan

    看到了 真的厉害这都看出来了!!

    2018-09-16 21:36:04

    共 1 条回复 >

  • 瑞瑞d
    2018-09-12 20:18:42


        public static void main(String[] args) {
         int one = 10 ;
            int two = 20 ;
            int three = 0 ;
        three=one+two;//在此处three的值已经是20了
        System.out.println("three=one+two==>"+three); 
        three+=one; //three的值变成了30
        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);
        
     }
    }



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

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

1165559 学习 · 17587 问题

查看课程

相似问题