Para qualquer número:
public class Fatorial {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Você quer saber o fatorial de qual número?");
int fatorial = Integer.valueOf(scanner.nextLine());
int numeroInicial = fatorial;
int total = 1;
for (total = 1; fatorial > 0; fatorial--) {
total *= fatorial;
}
System.out.println("O fatorial de " + numeroInicial + " é " + total);
}
}