public class HelloWorld{
public static void main(String[] args) {
String myName="我爱慕课网";
string myYes="www.imooc.com";
System.out.println("myName");
System.out.println("myYes");
}
}
同学,错误是在string myYes="www.imooc.com"; 这一行
String关键字的首字母你弄成小写的了
不是string 是String
string myYes="www.imooc.com"; String 大写
string myYes="www.imooc.com"; //String首字母大写
检查是否用英文的符号