“Wydrukuj dwuwymiarową tablicę Java” Kod odpowiedzi

Jak wydrukować tablicę 2D w Javie

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

Wydrukuj tablicę 2D w Javie

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

Wydrukuj dwuwymiarową tablicę Java

//this way u can print your array row by row

for (int i = 0; i < row; i++){
	for (int j = 0; j < column; j++){
        System.out.println(array[i][j]);
	}
}

//this way u can print your array column by column

for (int i = 0; i < column; i++){
	for (int j = 0; j < row; j++){
		System.out.println(array[i][j]);
	}
}
KeWols

Odpowiedzi podobne do “Wydrukuj dwuwymiarową tablicę Java”

Pytania podobne do “Wydrukuj dwuwymiarową tablicę Java”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu