“Drukuj Java tablica 2D jako stół” 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

Drukuj Java tablica 2D jako stół

static void debugV2(Object... obj) {
        System.out.println(Arrays.deepToString(obj)
                .replace("],", "\n").replace(",", "\t")
                .replaceAll("[\\[\\]]", " "));
    }

    static void debug(Object... obj) {
        System.err.println(Arrays.deepToString(obj).replace("], ", "]\n"));
    }
PRO_GrAMmER (IA Fahim)

Drukuj Java 2D tablica i kolumna

public class TwoDimensionalArrays
{
public static void main (String args[])
{
    final int size1 = 2, size2 = 4, size3 = 5;
    int [][] numbers = {{20,25,34,19,33}, {11,17,15,45,26}, {27,22,9,41,13}};        
    int row = 0, col = 0;

        for(row = 0; row <= size1; row++); //loops through rows
        {
            for(col = 0; col <= size2; col++); //loops through columns
            {
                System.out.println(numbers[row][col]);
            }
        System.out.print("\n"); //takes a new line before each new print
        }
    }
 }
Frightened Flamingo

Odpowiedzi podobne do “Drukuj Java tablica 2D jako stół”

Pytania podobne do “Drukuj Java tablica 2D jako stół”

Więcej pokrewnych odpowiedzi na “Drukuj Java tablica 2D jako stół” w Java

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

Przeglądaj inne języki kodu