用java写一个简单应用程序在控制台输出“Hello java”
public class I1TestOne{ public static void main(String[] args){ System.out.println("Hello java"); } }