public class 类名{
public static void main(String[]args){
//在该方法中,输出信息
System.out.println(“要输出的内容”);
}
}
注意事项:
1、 类名必须和文件名相同,且类名首字母为大写
2、 (String)必须是大写S
3、 System是以大写的S开头
4、 所有的符号({}、()、;)都是英文状态下输入的
时间: 2024-10-07 22:07:58
public class 类名{
public static void main(String[]args){
//在该方法中,输出信息
System.out.println(“要输出的内容”);
}
}
注意事项:
1、 类名必须和文件名相同,且类名首字母为大写
2、 (String)必须是大写S
3、 System是以大写的S开头
4、 所有的符号({}、()、;)都是英文状态下输入的