“Cómo imprimir elementos en Matrix Java” Código de respuesta

Cómo imprimir una matriz en 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

Cómo imprimir elementos en Matrix Java

public static void printMatrix(Object[][] matrix){
        for (int i = 0; i < matrix.lenght ; i++) {
            for (int j = 0; j < matrix.lenght; j++) {
                System.out.print(matrix[i][j] + " ");
            }
            System.out.println();
        }
    }
DoubleBaconCheeseBurguer

Respuestas similares a “Cómo imprimir elementos en Matrix Java”

Preguntas similares a “Cómo imprimir elementos en Matrix Java”

Más respuestas relacionadas con “Cómo imprimir elementos en Matrix Java” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código