题解 | #蛇形矩阵#
蛇形矩阵
http://www.nowcoder.com/practice/649b210ef44446e3b1cd1be6fa4cab5e
最重要的是,行列的问题,先列后行
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); // 注意 hasNext 和 hasNextLine 的区别 while (in.hasNextInt()) { // 注意 while 处理多个 case int n = in.nextInt(); int[][] array = new int [n][n]; int val = 1; // 循环 for(int j=0;j<n;j++){ int i = j; while(i >= 0){ array[i][j] = val++; i--; } } for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if (array[i][j] != 0){ System.out.print(array[i][j] + " "); } } System.out.print("\n"); } } } }