请问有错吗 怎么我输进去都是错误 public class HelloWorld{ public static void main(String[] args) { String haohao = "我爱慕课网"; String haoren = "www.imooc.com"; System.out.printly(haohao + "\n" + haoren); } }
你问题里的输出错了 println 下面的回答是对的
这个没错的啊
wobuzhidaoye
public class HelloWorld{
public static void main(String[] args) {
String s1 = "我爱慕课网";
String s2 = "www.imooc.com";
System.out.println(s1 + "\n" +s2);
}
}