求大神解答,哪里有错误
慕课网后面应该是英文的分号,illegal character是指不规范的字符
public class HelloWorld{
public static void main(String[] args) {
String hobby="慕课网";
System.out.println(“”+hobby);
}
}
//第三行最后的标点符号错了,你弄的是中文的分号
public class HelloWorld{
public static void main(String[] args) {
String hobby ="慕课网";
System.out.println(hobby);
}
}