1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
public static void main(String[] args) {
// attributs
String tableau[] = new String[] { "1", "4", "5", "1", "3", "4",
"saucisson", "1", "4", "5", "1", "3", "4", "1", "4", "5", "1",
"3", "4", "io", "truc", "ENFIN!" };
int count = 0;
for (int i = 0; i < tableau.length; i++) {
count = 0;
for (int k = i; k < tableau.length; k++) { //k = i
if (tableau[i].equals(tableau[k])) {
count++; // => si string du tableau[i] est égale à un string du
// tableau[k jusqu'à tableau.length], count ++
}
}
if (count == 1) { // => si l'ip de la boucle [i] n'est apparu qu'une
// seule fois (là où [i] = [k]), afficher le
// contenu de [i] dans l'output
System.out.println("String unique : " + tableau[i]);
}
}
} |
Partager