Essa foi bem difícil... Mas entendi como faz e funciona...
public class ExercicioFatorial {
public static void main(String[] args) {
int fatorial = 1;
for (int n = 1; n < 11; n++) {
fatorial *= n;
System.out.println("Fatorial de " + n + " = " + fatorial);
}
}
}