1
resposta

fatorial

using System;

class Programa { static void Main(string[] args) { Console.WriteLine("Desafio - Fatorial"); int fatorial = 1;

    for (int numero = 1; numero <= 10; numero++)
    {
        fatorial *= numero;
        Console.WriteLine(numero + "! = " + fatorial);
    }

    Console.WriteLine("Tecle ENTER para fechar ...");
    Console.ReadLine();
}

}

1 resposta

Bom dia Rafaela,

Continue praticando e parabéns!

Att.