第一个java小程序hello word

java是依赖于jvm的语言,有jvm在到处运行的优点
下面我写一个demo

打开idea我这边推荐idea,因为适合开发
public class demo(){

 
 
public static void main(String[] args) { System.out.print("helloword");
} }

猜你喜欢

转载自blog.csdn.net/lrxmrlirixing/article/details/80865307