“So drucken Sie ein 2D -Array in Java” Code-Antworten

So drucken Sie ein 2D -Array in Java

for (int row = 0; row < arr.length; row++)//Cycles through rows
{
  for (int col = 0; col < arr[row].length; col++)//Cycles through columns
  {
    System.out.printf("%5d", arr[row][col]); //change the %5d to however much space you want
  }
  System.out.println(); //Makes a new row
}
//This allows you to print the array as matrix
GelatinousMustard

Drucken Sie das 2D -Array in Java aus

int[][] array = new int[rows][columns];
System.out.println(Arrays.deepToString(array));
Careful Cockroach

Ähnliche Antworten wie “So drucken Sie ein 2D -Array in Java”

Fragen ähnlich wie “So drucken Sie ein 2D -Array in Java”

Weitere verwandte Antworten zu “So drucken Sie ein 2D -Array in Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen