Java 2d Array

[Solved] Java 2d Array | Scala - Code Explorer | yomemimo.com
Question : how to print a 2d array in java

Answered by : jedadiah-mcfarland

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

Source : | Last Update : Wed, 29 Apr 20

Answers related to java 2d array

Code Explorer Popular Question For Scala