package Testegit2;
// Exercícios em java: fatorial de n!.
public class Fatorial {
public static void main(String[] args) {
int fatorial =1;
for (int i = 1; i <=10; i++){
fatorial *= i;
System.out.println(i + "! = " + fatorial);
}
}
}
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
6! = 720
7! = 5040
8! = 40320
9! = 362880
10! = 3628800