- /**
- * @param height 上三角型高度
- */
- public static void foo(int height) {
- int index = height-1;
- for(int i=0; i<height*2-1; i++,index--) {
- int absin = Math.abs(index);
- if(absin!=0)
- System.out.printf("%"+absin+"s", "");
- for(int j=0; j<2*(height-absin)-1; j++) {
- System.out.print("*");
- }
- System.out.println();
- }
- }
复制代码
|