Créer un tableau
int [] tab = new int[10];
Créer et remplir un tableau
int tab [] = {1, 5, 6};
Remplir une case
tab[1] = 2;
Remplir un tableau à l'aide d'une boucle
int tab [] = new int [5]; for(int i = 0; i < tab.length, i++) tab[i] = i+2;
Afficher un tableau
int tab [] = {1,5,12}; for(int i = 0; i < 3; i++) println(tab[i]);
Créer un tableau à 2 dimensions
int tab[][] = new int [5][7]
Remplir un tableau à 2 dimensions
int tab[][] = {{7, 21, 9}, {47,9 ,12, 16}};
Afficher un tableau à 2 dimensions
int tab2[][] = {{7, 21, 9, 97, 45}, {47, 12}}; println(tab2[1][1]); println(tab2[0][3]);
Crée par QUINQUENEL