cours0708/workspace/G5a_exercices/fr/blankoworld/g5a/Dichotomique.java

33 lines
614 B
Java
Raw Normal View History

2008-11-25 21:11:16 +00:00
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.");
}
}
}