第一个JAVA创建

1.file-new-java project  创建项目文件夹

2.在项目文件夹new-class

3.java对大小写比较敏感

输入代码

public class HELLOWORD {
	public static void main(String[] args){
		System.out.println("hello world你是坏人");
	}

}

  

原文地址:https://www.cnblogs.com/tantanba/p/5546160.html