public class HelloWorld{
public static void main(String[] args) {
String love="我爱慕课网";
String Url="www.imooc.com";
System.out.println(love+"\n"+Url);
}
}
你的写法没有任何问题。
网页判断正确的依据是:
1.代码必须能够编译通过
2.必须且只能有“我爱慕课网”和“www.imoc.com”这两行。至于你用 println 还是 “\n”是没有关系的。
额……我的这个没问题……(没在cmd跑,不清楚cmd什么样子)
System.out.print(love+"\t"+Url);
应该没有问题。ps:Url命名为url比较好。