慕粉2254498474
2016-12-04 13:35
请问有错吗 怎么我输进去都是错误 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);
}
}
Java入门第一季(IDEA工具)升级版
1165175 学习 · 17581 问题
相似问题