“Java Print 2D Array Zeile und Spalte” Code-Antworten

Java Print 2D -Array als Tabelle

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)

Java Print 2D Array Zeile und Spalte

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

Ähnliche Antworten wie “Java Print 2D Array Zeile und Spalte”

Fragen ähnlich wie “Java Print 2D Array Zeile und Spalte”

Weitere verwandte Antworten zu “Java Print 2D Array Zeile und Spalte” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen