如何创建具有二维数组的矩形?

问题描述 投票:0回答:1

在本练习中,我们必须使用从10到15行和20到30列的二维数组绘制一个矩形,放入矩形“#”的边框,同时放入矩形“ - ”。它必须看起来像这样:https://i.stack.imgur.com/IOqY6.png

我到目前为止的代码就是这个,但是我需要一些帮助修复它,因为我有点迷失了练习:

public class Practica9{
public static void main(String[] args){

    char [][] tablero = new char [10][20];
    for (int i = 0; i < 10; i++){   
        for (int j = 0; j < 20; j++){
            tablero [0][19] = #;
            tablero [9][19] = #;
            System.out.println (tablero[0][19]);
            System.out.println (tablero[9][19]);
        }
    }
    for (int i = 0; i < 10; i++){
        for (int j = 0; j < 20; j++){
            tablero [1][18] = -;
            tablero [8][18] = -;
            System.out.println (tablero [1][18]);
            System.out.println (tablero [8][18]);
        }
    }
}
}
java arrays multidimensional-array rectangles drawrectangle
1个回答
0
投票
public static void main(String[] args){
      int rows = 15;
      int columns =30;
      char [][] rectangle = new char[rows][columns];
      // fill array
      for(int i = 0; i < rows; i++){
            for(int j = 0; j < columns; j++){
                  if(i==0 || j==0  || i==rows-1 || j==columns-1){
                          rectangle[i][j] = '#';
                  }
                  else{
                           rectangle[i][j] = '-';
                  }
            }
      }
     // print array
      for(int i = 0; i < rows; i++){
            for(int j = 0; j < columns; j++){
                  System.out.print(rectangle[i][j]);
            }
           System.out.println();
      }
}
© www.soinside.com 2019 - 2024. All rights reserved.