Compare commits
No commits in common. "298af8b3b98dd7bd6b255c41f9160768de546df7" and "2c5ec0e958a8711da05c0a83f2ca74fda2c8ed03" have entirely different histories.
298af8b3b9
...
2c5ec0e958
58
InvTab.java
58
InvTab.java
@ -1,58 +0,0 @@
|
|||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
28
InvVars.java
28
InvVars.java
@ -1,28 +0,0 @@
|
|||||||
import static utils.Utils.*;
|
|
||||||
|
|
||||||
public class InvVars {
|
|
||||||
|
|
||||||
public static final void main(String[] args) {
|
|
||||||
afficher("Inversion");
|
|
||||||
|
|
||||||
int a= 5;
|
|
||||||
int b= 1;
|
|
||||||
|
|
||||||
afficher("a = ",a);
|
|
||||||
afficher("b = ",b);
|
|
||||||
|
|
||||||
|
|
||||||
int c=a;
|
|
||||||
|
|
||||||
a=b;
|
|
||||||
b=c;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
afficher("a = ",a);
|
|
||||||
afficher("b = ",b);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -18,18 +18,6 @@ public class Utils {
|
|||||||
}
|
}
|
||||||
System.out.println();
|
System.out.println();
|
||||||
}
|
}
|
||||||
public static final void afficherTabInt(int... args) {
|
|
||||||
if (args == null) {
|
|
||||||
System.out.println("null");
|
|
||||||
} else {
|
|
||||||
String str = Arrays.stream(args)
|
|
||||||
.boxed()
|
|
||||||
.map(i -> i+"")
|
|
||||||
.collect(Collectors.joining(" "));
|
|
||||||
System.out.println(str);
|
|
||||||
}
|
|
||||||
System.out.println();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int lireEntier() {
|
public static int lireEntier() {
|
||||||
try (Scanner reader = new Scanner(System.in)) {
|
try (Scanner reader = new Scanner(System.in)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user