请问我这个代码有什么问题呢?为什么输出的是love和web而不是变量值
public class HelloWorld{
public static void main(String[] args) {
String love="我爱慕课网";
String web="www.imooc.com";
System.out.println("love");
System.out.println("web");
}
}
public class HelloWorld{
public static void main(String[] args) {
String love="我爱慕课网";
String web="www.imooc.com";
System.out.println("love");
System.out.println("web");
}
}
2018-07-26
举报