使用Java打印数字组成的魔方阵及字符组成的钻石图形
程序员文章站
2024-03-08 23:32:36
打印魔方阵
输入一个自然数n(2≤n≤9),要求输出如下的魔方阵,即边长为n*n,元素取值为1至n*n,1在左上角,呈顺时针方向依次放置各元素。 n=3时:...
打印魔方阵
输入一个自然数n(2≤n≤9),要求输出如下的魔方阵,即边长为n*n,元素取值为1至n*n,1在左上角,呈顺时针方向依次放置各元素。 n=3时:
1 2 3 8 9 4 7 6 5
【输入形式】 从标准输入读取一个整数n。
【输出形式】 向标准输出打印结果。输出符合要求的方阵,每个数字占5个字符宽度,向右对齐,在每一行末均输出一个回车符。
【输入样例】 4
【输出样例】
1 2 3 4 12 13 14 5 11 16 15 6 10 9 8 7
实现:
package cn.dfeng; import java.util.arrays; import java.util.scanner; public class maze { enum direction{ up, down, right, left; } public int[][] buidmaze( int n ){ int[][] maze = new int[n][n]; for( int[] a : maze ){ arrays.fill(a, 0); } int col = 0; int row = 0; int counter = 1; direction d = direction.right; while( true ){ if( maze[row][col] == 0 ){ maze[row][col] = counter++; switch (d) { case right: if( col + 1< n && maze[row][col + 1] == 0){ col ++; }else{ d = direction.down; row ++; } break; case down: if( row + 1 < n && maze[row + 1][col] == 0){ row ++; }else{ d = direction.left; col --; } break; case left: if( col - 1 >= 0 && maze[row][col-1] == 0){ col --; }else{ d = direction.up; row --; } break; default: if( row - 1 >= 0 && maze[row - 1][col] == 0){ row --; }else{ d = direction.right; col ++; } break; } }else{ break; } } return maze; } public void printmaze( int[][] maze ){ for( int[] row : maze ){ for( int i : row ){ system.out.printf("%3d", i); } system.out.println(); } } /** * @param args */ public static void main(string[] args) { scanner sc = new scanner(system.in); system.out.println("please input the size of the maze:"); int size = sc.nextint(); maze maze = new maze(); int[][] m = maze.buidmaze( size ); maze.printmaze( m ); } }
打印钻石图形
钻石图的效果大概就是这样的:
下面我们来看代码
package cn.dfeng; /** * 该类能够用*打印大小的钻石图形 * @author dfeng * */ public class drawer { /** * 打印钻石图形 * @param n 钻石大小 */ public void printdiamond( int n ){ system.out.println(); int i = 0; boolean flag = true; while( i >= 0 ){ if (i < n) { for (int j = 0; j < n - i; j++) { system.out.print(" "); } for (int j = n - i; j <= n + i; j += 2) { system.out.print("* "); } system.out.println(); } if (i == n) { flag = false; i--; } if (flag) { i++; } else { i--; } } } }
上一篇: 深入理解Mybatis一级缓存