Olá Pessoal,
Essa é a versão do desafio que fiz:
public class DesafioForFatorial {
public static void main(String[] args) {
int fatorial = 1;
for(int n=1;n <= 10; n++) {
fatorial = fatorial * n;
}
System.out.println("10! = " + fatorial);
}
}