3-helloworld
hello, world!
public class HelloWorld{
public static void main(String[] args){
System.out.print("Hello, World!");
}
}
dos试运行

java转义字符
\n 换行
\t 制表位
public class HelloWorld{
public static void main(String[] args){
System.out.print("Hello, World!");
}
}
dos试运行

\n 换行
\t 制表位