Смысл таков: найти факториал заданного числа и вывести результат через параметр.
Я нуб в шарпе, прошу пояснить если что то сделано не так. Спасибо!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomMethodsOfClass
{
class Program
{
static void Factorial1(int number)
{
int factorial = 1;
for (int i = 1; i <= number; i++)
{
factorial *= i;
if (i == number)
{
Console.Write("{0}", i);
}
else
{
Console.Write("{0} * ", i);
}
}
Console.Write(" = {0}", factorial);
Console.ReadKey();
}
static void Main(string[] args)
{
Console.Write("Введите число : ");
int number = int.Parse(Console.ReadLine());
Factorial1(number);
}
}
}