2018-08-12 《Think in Java》第2章
2018-08-12 本文已影响0人
聪聪爱石头
不懂点:
标签:Output作用
Hello World代码
public class HelloWorld {
private final static Stringwords ="Hello World";
public static void main(String[] args) {
System.out.println(words);
}
}