int resultado = 1;
int fatorial =6;
for (int i =1;i <=fatorial;i++)
{
resultado = resultado * i;
}
Console.WriteLine(resultado);
int resultado = 1;
int fatorial =6;
for (int i =1;i <=fatorial;i++)
{
resultado = resultado * i;
}
Console.WriteLine(resultado);
using static System.Console; //Essa diretiva torna opcional escrever Console
Write("Informe o número: ");
var numero = Convert.ToInt32(ReadLine());
for (int i = 1; i < 11; i++)
{
WriteLine($"O fatorial de {numero} X {i} = {numero * i}");
}
ReadKey();