public class HelloWorld {
/*
* 多行注释方式
* main()方法: java语言的入口方法(函数)
*/
public static void main(String[] args){
//单行注释
//打印输出 hello world
System.out.println("hello world!");
}
}
public class HelloWorld {
/*
* 多行注释方式
* main()方法: java语言的入口方法(函数)
*/
public static void main(String[] args){
//单行注释
//打印输出 hello world
System.out.println("hello world!");
}
}