Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 296 Bytes

5.md

File metadata and controls

20 lines (11 loc) · 296 Bytes

第十节:Hello World 入门程序

Java 程序开发三个步骤:编写代码,编译代码,运行代码。

javac.exe 编译器

Java.exe 解释器

public class HelloWorld{

​	public static void main(String[] args){

​		System.out.println("Hello World!");

​	}

}