1 /** 2 *第一个java程序,打印“hello,world!” 3 *author:finalRuFeng 4 */ 5 public class Welcome{ 6 7 public static void main(String[] args){ 8 9 System.out.println("hello,world!"); 10 } 11 12 13 }