Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package factoriel;

import java.util.Scanner;

/**
*
* @author it's show time
*/
public class Factoriel {

public static void main(String[] args) {


int i;
int r = 0;
Scanner sc = new Scanner(System.in);
System.out.println("Veulliez saisir un nombre : ");
i = sc.nextInt();
r= facto(i);
System.out.println(r);
}

public static int facto(int n){


int i, j = 1;
for(i = 1; i <= n ; i++) {
j *= i;
}
return j ;
}
}

You might also like