圖解:輸入任意一個數值,打印一個螺旋矩陣(二維數組)

更多算法題請看本人博客分類--算法  public class Demo11 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(true){ int n = sc.nextInt(); if(n == -1){ break;
相關文章
相關標籤/搜索