Hello.java
public class Hello{//类
public static void main(String[] args){
System.out.print("hello,World!!!");//方法
}
}
类名要和文件名一致
public class Hello{//类
public static void main(String[] args){
System.out.print("hello,World!!!");//方法
}
}
类名要和文件名一致