想输出一段hello world,结果编译出来,没报错,但显示不出hello world 输出我是这样写的System.out.println("hello world"); 想知道问题出在哪?谢谢帮忙
5 回答
此員非猿
TA贡献2条经验 获得超1个赞
public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World"); } }
理论上要这样
而你的类名称首字母要大写
还有 public static 才对 可是你写的是 pubic
希望有帮到你
慕粉2340301221
TA贡献2条经验 获得超0个赞
完整的public class hello{ pubic static void main(String[] args){ System.out.println("hello world"); } } 不知道问题出在哪,运行后显示一个空白行
添加回答
举报
0/150
提交
取消