“So drucken Sie Elemente in Matrix java” Code-Antworten

So drucken Sie eine Matrix 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

So drucken Sie Elemente in 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

Ähnliche Antworten wie “So drucken Sie Elemente in Matrix java”

Fragen ähnlich wie “So drucken Sie Elemente in Matrix java”

Weitere verwandte Antworten zu “So drucken Sie Elemente in Matrix java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen