1
resposta

segue resposta encontrada


public class TestaDesafioFatorial {

        public static void main(String[] args) {

                int  fatorial = 1;
         for (int n = 1; n < 11; n++) {
      fatorial = fatorial * n;
                    System.out.println("Fatorial de " + n + " = " + fatorial);
                }
            }
    }
1 resposta

perfeito lucas