Java注释
时间:2021-03-18 14:20:10
收藏:0
阅读:0
单行 多行 文档
public class HelloWorld {
public static void main (String [] args) {
//output hello world
/* output
hello
world
*/
/**
* @description helloword
* @author alex
*/
System.out.println("Hello World!");
}
}
评论(0)