using System;
namespace LacoDeRepeticaoForProjetoMultiploDeTres { class Program { static void Main(string[] args) //O fatorial de 4! = 1 x 2 x 3 x 4 = 24 //O fatorial de 6! = 1 x 2 x 3 x 4 x 5 x 6 = 720 { for (int i = 1; i <= 10; i++) { int fatorial = 1; for (int j = 1; j <= i; j++) { fatorial *= j; } Console.WriteLine("O Fatorial de " + i + " é " + fatorial); } } } }