初学java,第一个小代码有问题请教,之前一个点错采纳了,没到解决方法
想输出一段hello world,结果编译出来,没报错,但显示不出hello world 输出我是这样写的System.out.println("hello world"); 想知道问题出在哪?谢谢帮忙
5回答
-
此員非猿
public class HelloWorld{
public static void main(String[] args){
System.out.println("Hello World");
}
}理论上要这样而你的类名称首字母要大写还有 public static 才对 可是你写的是 pubic希望有帮到你
-
慕粉2340301221
问题已解决,谢谢大家
-
传说中的陈百万
首先,类名首字母要大写,这是规范,第二,你的main方法的修饰符错了,public
-
慕粉2340301221
完整的public class hello{ pubic static void main(String[] args){ System.out.println("hello world"); } } 不知道问题出在哪,运行后显示一个空白行