**
Part1:Java基础输出语句
**
第一部分最基础,就是标准的输出语句。
ps:(目前还没熟悉这个编辑器,先尝试一下)
Example01 : 输出“hello world”
运行结果:
实现代码:
public class Example01 {
public static void main(String[] args) {
System.out.println("hello world");
}
}
Example02:输出由“ * ”组成的三角形
运行结果:
实现代码:
public class Example02 {
public static void main(String[] args) {
System.out.println(" * ");
System.out.println(" *** ");
System.out.println(" ***** ");
System.out.println("*******");
}
}
要点:第一部分是比较基础的,入门需要经历的输出语句。