Answers for "two dimensional array java System out print java"

10

how to print a 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
Posted by: Guest on April-22-2020
-1

how to print elements in matrix java

public static void printMatrix(Object[][] matrix){
        for (int i = 0; i < 3; i++) {
            for (int j = 0; j < 3; j++) {
                System.out.print(matrix[i][j] + " ");
            }
            System.out.println();
        }
    }
Posted by: Guest on August-21-2021

Code answers related to "two dimensional array java System out print java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language