Write a program in C# Sharp to find the factorial of a given number using recursion
- برمجة سي شارب
- برمجة
- 2021-05-31
- ahmadghneem
الأجوبة
using System;
class RecExercise9
{
static void Main(string[] args)
{
Console.WriteLine("\n\n Recursion : Find the factorial of a given number :");
Console.WriteLine("-------------------------------------------------------");
Console.Write(" Input any positive number : ");
int n1 = Convert.ToInt32(Console.ReadLine());
long fact = FactorialCalcu(n1);
Console.WriteLine(" The factorial of {0} is : {1} ", n1, fact);
Console.ReadKey();
}
private static long FactorialCalcu(int n1)
{
if (n1 == 0)
{
return 1;
}
return n1 * FactorialCalcu(n1-1);
}
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
