public fatorial {
public static void main(String[] args){
int fatorial = 1;
for (int n = 1; n <= 11; n++) {
fatorial = fatorial * n;
System.out.println(fatorial);
}
}
}
//também realizei da forma abaixo, utilizando o while
public fatorial {
public static void main(String[] args){
int fatorial = 1;
int n = 1;
while (n <= 11) {
fatorial = fatorial * n;
System.out.println(fatorial);
n++;
}
}
}