मराठी
तामिळनाडू बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान इयत्ता ११

Write a program to find the factorial of the given number using recursion. - Computer Science

Advertisements
Advertisements

प्रश्न

Write a program to find the factorial of the given number using recursion.

थोडक्यात उत्तर

उत्तर

#include<iostream>
using namespace std;
int factorial(int); // Function prototype //
int main()
{
int no;
cout<<"\nEnter a number to find its factorial: ";
cin >> no;
cout << "\nFactorial of Number " << no <<" = " << factorial(no);
return 0;
}
int factorial(int m)
{
if (m > 1)
{
return m*factorial(m-1);
}
else
{
return 1;
}
}

Output :

Enter a number to find its factorial: 5

Factorial of Number 5 = 120

shaalaa.com
Recursive Function
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 11: Functions - Evaluation - Section - D [पृष्ठ २०५]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
पाठ 11 Functions
Evaluation - Section - D | Q 2. | पृष्ठ २०५

संबंधित प्रश्‍न

What is Recursion?


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×