- class Triangle
- {
- public static void main(String[] args)
- {
- for(int a=0; b<5; a++)//这个代表只有四行
- {
- for(int b=5; b>=0;b--)//这个代表无论怎么运行都会执行五列
- {
- if(b>a)
- {
- System.out.print(" ");
- }
- else
- {
- System.out.print("* ");
- }
- }
- System.out.println();
- }
- }
- }
上面这段代码执行之后就是这样
如果*后面不加空格就会称为下面的这样