hello.java
来自「最简单的java入门程序,对初学者来说很适用.希望大家一起学习好java」· Java 代码 · 共 14 行
JAVA
14 行
class HelloWorld{
public static void main(String arguments[]){
String s="Hello World!";
System.out.println(s);
}
}
//the easiest jave program
//interpretion
//the HelloWorld class begins here
//the main access begins here
//defined an string variable called s
//print s
//the HelloWorld class ends here
//the main access ends here
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?