Factoriel
public class Factoriel {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int i;
int res;
i=1;
while (i<=10){
res=factoriel(i);
System.out.println("factoriel de "+i+" = "+res);
i=i+1;
}
}
private static int factoriel (int x){
int res = 1;
while(x > 0){
res = x * res;
x = x - 1;
}
return res;
}
}
Retour aux articles de la catégorie Programmes première année -