public class Fatorial {
public static void main(String[] args){
int n = 0; long fat = 1;
while (n<=9){
fat = fat * (n+1); n++;
System.out.println(fat);
} } }/Rodei o programa e ele funcionou corretamente. Fiz o chines antes, passo a passo. run: 1 2 6 24 120 720 5040 40320 362880 3628800 /