想输出一段hello world,结果编译出来,没报错,但显示不出hello world 输出我是这样写的System.out.println("hello world"); 想知道问题出在哪?谢谢帮忙
慕粉2340301221
浏览 1459回答 5
5回答
此員非猿
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World");
}
}理论上要这样而你的类名称首字母要大写还有 public static 才对 可是你写的是 pubic希望有帮到你