You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
309 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

public class Jb01_HelloWorld //类名与文件名保持一致由26个大小写字母、数字及_$组成。不能以数字开头,禁止使用关键字,
{
//定义主函数
public static void main(String[] args) //args即arguments
{
System.out.println("HelloWorld"); //打印输出HelloWorld,ln表示换行!
//public class等表示关键字由Java定义
}
}