Question du test Java - Les bases

Comment afficher un tableau en Java

Intermédiaire

Code :

public class QuestionJava {
    public static void main(String[] args) {
        Integer[] tab = new Integer[3];
        tab[0] = 2;
        tab[1] = 5;
        tab[2] = 8;
        System.out.println(tab); // line 7
    }
}

Que faut-il modifier à la ligne 7 pour voir correctement le tableau et afficher les différents éléments ?

Auteur: PierreStatut : PubliéeQuestion passée 2218 fois
Modifier
4
Évaluations de la communautéPersonne n'a encore évalué cette question, soyez le premier !