33 lines
487 B
Java
33 lines
487 B
Java
import static utils.Utils.*;
|
|
|
|
public class Maximum {
|
|
|
|
public static final void main(String[] args) {
|
|
afficher("EXEMPLE");
|
|
|
|
int[] tab = { 34, 568, 11, 678, 0, -1};
|
|
|
|
int m = max(tab);
|
|
afficher(m);
|
|
}
|
|
|
|
public static int max(int[] tab){
|
|
|
|
int valeurMax = tab[0];
|
|
for(int compteur=0; compteur<tab.length; compteur++){
|
|
int element = tab[compteur];
|
|
if (element > valeurMax){
|
|
valeurMax = element;
|
|
}
|
|
}
|
|
|
|
return valeurMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|