public class HelloWorld{
public static void main(String[] args) {
String myEnterprise="我爱慕课网";
String solution="www.imooc.com";
System.out.println(myEnterprise);
System.out.println(solution);
}
}
代码是没有错误的,出错的原因有可能是你的包名未引入,或者你的文件命名与类的命名不同。注意大小写哦。希望我的解答能帮到你。