1
resposta

Desafio fatorial


public class DesafioFatorial {

    public static void main(String[] args) {
        int fatorial = 1;
        for(int i = 1; i <= 10; i++) {
            fatorial *= i;
            System.out.println("Fatorial de " + i + " = " + fatorial);
        }
    }

}
1 resposta

Oi, David! Espero que esteja bem.

Parabéns pela resolução.

Em caso de dúvidas, não deixe de compartilhar no fórum :)

Uma ótima semana e bons estudos!