public class Desafio {
public static void main(String[] args) {
int numero =1;
for(int fatorial = 1; fatorial <11; fatorial ++) {
numero *=fatorial;
System.out.println("Fatorial de " + fatorial + " = " +numero);
}
}
}