33 lines
614 B
Java
33 lines
614 B
Java
|
package fr.blankoworld.g5a;
|
|||
|
|
|||
|
public class Dichotomique {
|
|||
|
|
|||
|
/**
|
|||
|
* @param args
|
|||
|
*/
|
|||
|
public static void main(String[] args) {
|
|||
|
// TODO Auto-generated method stub
|
|||
|
int longueur = args.length;
|
|||
|
int i = 1;
|
|||
|
int indice = 0;
|
|||
|
|
|||
|
while(i != longueur) {
|
|||
|
if(Integer.parseInt(args[0])==Integer.parseInt(args[i]))
|
|||
|
{
|
|||
|
indice = i;
|
|||
|
}
|
|||
|
i += 1;
|
|||
|
}
|
|||
|
|
|||
|
if(indice == 0)
|
|||
|
{
|
|||
|
System.out.print("L'entier " + args[0] + " ne se trouve pas dans le tableau.");
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
System.out.print("L'entier " + args[0] + " se trouve <20> l'indice " + indice + " du tableau.");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|