public class HelloWorld{
public static void main(String[] args) {
String loveImocc="我爱慕课网";
String adds="www.imocc.com";
System.out.println(loveImocc);
System.out.pringln(adds);
}
}
第四个是System.out.println(adds); 你把t打成g了
第三行命名 loveImocc,第二个L大写。最后一行改为:System.out.println(adds);
最后一行改为:System.out.println(adds);
同上。
最后一行,System.out.println(adds);你的println打错了。