问答详情
源自:2-5 如何命名Java变量

大家帮忙看看哪里错了

public class Helloword {

public static void main(String[] args) {

String my="我爱慕课网";

String myk="www.imooc.com";

System.out.println("ppp");

System.out.println("ppp");

}

}

提问者:慕勒4214972 2018-08-15 21:41

个回答

  • moke牛牛
    2018-08-17 22:36:05
    已采纳

    public class Helloword {

        public static void main(String[] args) {

            String my="我爱慕课网";

            String myk="www.imooc.com";

            System.out.println(my);

            System.out.println(myk);

        }

    }


  • 江星辰
    2018-10-24 22:19:16

    public class HelloWorld{

        public static void main(String[] args) {

               String a="我爱慕课网";

               String b="www.imooc.com";

               System.out.println( a+b );

        }

    }


  • 慕勒4214972
    2018-08-15 21:59:27

    自己解决了不用麻烦了

  • 慕勒4214972
    2018-08-15 21:58:46

    public class HelloWorld{

        public static void main(String[] args) {

    String a="我爱慕课网";

            String b="www.imooc.com";

    System.out.println(  a+"\tr"+b  );

    }

    }

  • 慕勒4214972
    2018-08-15 21:43:09

    public class Helloword {

    public static void main(String[] args) {

    String my="我爱慕课网";

    String myk="www.imooc.com";

    System.out.println("my");

    System.out.println("myk");

    }

    }