问答详情
源自:2-4 变量是什么

求大神看一下哪错了

public class HelloWorld{

    public static void main(String[] args) {

String hobby="慕课网";

System.out.println(hobby);

}

}


提问者:慕村3369167 2019-11-17 14:49

个回答

  • 慕侠5096495
    2019-11-17 15:09:42
    已采纳

    public class HelloWorld{

        public static void main(String[] args) {

    String hobby="慕课网";

    System.out.println(hobby);

    }

    }


  • qiaoranchuxin
    2020-01-02 22:30:43

    public class HelloWorld{

        public static void main(String[] args) {

    System.out.println("慕课网"+"hobby");

    }

    }

    这样就行了方便又简单

  • weixin_慕函数2505290
    2019-12-21 15:06:47

    public class HelloWorld{

        public static void main(String[] args) {

    String hobby="慕课网";

    System.out.println(“”+hobby);

    }

    }


  • 慕粉4366980
    2019-12-08 15:29:04

    pubulic class HelloWord{

          public static void main(String[]ages){

                String hobby="慕课网";

                System.out.prinln(hobby);

        }

    }

  • Maxshall
    2019-11-24 20:06:13

    "慕课网";这行,你最后打的是中文的;,应该改成英文的;

  • 慕设计1135462
    2019-11-18 11:03:40

    慕课网打完之后;用的是中文吧