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

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

月伴星如昨

2018-12-03 00:01

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

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

写回答 关注

2回答

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

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

    月伴星如昨

    可能是吧

    2018-12-03 08:11:26

    共 1 条回复 >

  • 慕用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);

        }

    }

    最后两个这么加就好了

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

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

1165565 学习 · 17587 问题

查看课程

相似问题