Factorial Program in C#

Advertisements

Prev Tutorial Next Tutorial

Find Factorial of any Number Program in C#

There are two method to find factorial of any number first is using increment operator and other is using decrement operator.

Factorial Program in C#

using System;
 
namespace factorial
{
 class Factorial
{
static void Main(string[] args)
{
int i, number, fact;
Console.WriteLine("Enter any Number: ");
number = int.Parse(Console.ReadLine());
fact = number;
for (i=number-1; i>=1; i--)
{
fact = fact * i;
}
Console.WriteLine("\nFactorial of Given Number is: "+fact);
Console.ReadLine();
}
}
}

Output

Enter any Number: 5
Factorial of Given Number is: 120

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements