本帖最后由 quick3g 于 2014-12-20 00:48 编辑
- /**
- 打印..三角形
- */
- public static void print(int n){
- for(int i=0;i<n;i++ ){
- for(int j=i;j<n ;j++ ){
- System.out.print(" " );
- }
- for(int j=0;j<=i;j++ ){
- System.out.print((char)(j+65));
- }
-
- for(int j=i;j>0;j-- ){
- System.out.print((char)(j+64));
- }
- System.out.println();
- }
- }
复制代码 |