public class Hello{//公共 类 类名 public static void main(String[] args){
// 公共 静态 无返回值 主方法(字符串[] 参数) System.out.println("helloworld");
// 系统.输出.打印换行(输出内容);
// 输出语句,首字母必须大写,println为输出内容后自动换行,print输出内容不换行
}}