看了毕老师关于输出星形形状的代码,自己参照写了个数字塔形的供大家看看。
新手可能有疏漏,有好想法的欢迎大家批评建议。{:soso_e100:}
输出效果:
代码:- class taxing
- {
- public static void main(String[] args)
- {
- int x,y,z;
- for(x=1;x<=4;x++)
- {
- for(y=7-x;y>=1;y--)
- {
- System.out.print(" ");
- }
- for(z=1;z<=x;z++)
- {
- System.out.print(z+" ");
- }
- for (int a=x-1; a>0;a-- )
- {
- if(a==x-1)
- System.out.print(a);
- else
- System.out.print(" "+a);
- }
- System.out.println();
- }
- }
- }
复制代码 |