59 lines
467 B
Java
59 lines
467 B
Java
|
import static utils.Utils.*;
|
||
|
|
||
|
public class InvTab {
|
||
|
|
||
|
public static final void main(String[] args) {
|
||
|
afficher("Inversion tableau");
|
||
|
|
||
|
|
||
|
int[] tab = { 34, 568, 11, 678, 0};
|
||
|
|
||
|
afficherTabInt(tab);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
int[] tab2 = new int[tab.length];
|
||
|
for(int compteur=0; compteur<tab.length; compteur++){
|
||
|
int element = tab[compteur];
|
||
|
|
||
|
int compteur2 = tab.length-compteur-1;
|
||
|
tab2[compteur2] = element;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
afficherTabInt(tab2);
|
||
|
}
|
||
|
|
||
|
}
|