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

        three+=one;

         System.out.println(three);

        three*=one;

         System.out.println(three);

        three/=one;

         System.out.println(three);

        three%=one;

        System.out.println(three);

为什么这段代码没有闭合给它加了两个 } 反而不行了

提问者:月伴星如昨 2018-12-03 00:01

个回答

  • 慕勒5139466
    2018-12-03 00:43:09
    已采纳

    是不是回车按多了,}}在最下面你看不到?

  • 慕用6423838
    2018-12-03 00:28:34

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

            three+=one;

             System.out.println(three);

            three*=one;

             System.out.println(three);

            three/=one;

             System.out.println(three);

            three%=one;

            System.out.println(three);

        }

    }

    最后两个这么加就好了