Comment afficher un tableau en Java

Dans ce tutoriel nous allons découvrir différentes techniques pour afficher un tableau en Java.
 
 

Exemple 1: Afficher un tableau à l’aide d’une boucle For
public class Main {

    public static void main(String[] args) {
        int[] tab = {1, 2, 3, 4};

        for (int i: tab) {
            System.out.println(i);
        }
    }
}

 
Sortie:

1
2
3
4

 

Exemple 2: Afficher un tableau à l’aide de la bibliothèque Array
import java.util.Arrays;

public class Main {

    public static void main(String[] args) {
        int[] tab = {1, 2, 3, 4};

        System.out.println(Arrays.toString(tab));
    }
}

Sortie:

[1, 2, 3, 4]

 
 

Exemple 3: Afficher un tableau multidimensionnel
import java.util.Arrays;

public class Main {

    public static void main(String[] args) {
        int[][] tab = {{1, 2, 3}, {3, 4, 5}, {6, 7}};

        System.out.println(Arrays.deepToString(tab));
    }
}

 
Sortie:

[[1, 2, 3], [3, 4, 5], [6, 7]]

 

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *