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

请问有错吗 怎么输进去都是错误的

请问有错吗 怎么我输进去都是错误 public class HelloWorld{    public static void main(String[] args) { String haohao = "我爱慕课网";        String haoren = "www.imooc.com";        System.out.printly(haohao + "\n" + haoren); } }

提问者:慕粉2254498474 2016-12-04 13:35

个回答

  • 夏虫必须语冰
    2016-12-04 14:04:25

    你问题里的输出错了 println    下面的回答是对的

  • 夏虫必须语冰
    2016-12-04 14:02:34

    这个没错的啊

  • wl温良
    2016-12-04 13:45:26

    wobuzhidaoye

  • 慕粉2254498474
    2016-12-04 13:37:38

    public class HelloWorld{

        public static void main(String[] args) {

    String s1 = "我爱慕课网";

            String s2 = "www.imooc.com";

    System.out.println(s1 + "\n" +s2);

    }

    }