• Courses
  • Code Compiler
  • Discuss
  • Pricing
  • Teams
Menu
+ 1

Factorial of a number

Do the factorial of a number using a recursive function

recursivefactorial
31st Oct 2017, 1:07 PM
Felipe Lucas Otero
Felipe Lucas Otero - avatar
3 Answers
+ 2
int fact(int num) { if(num>1) { return num*fact(num-1); }else if(num==1){ return 1; }
31st Oct 2017, 1:44 PM
shobhit
shobhit - avatar
+ 2
My take in Java https://code.sololearn.com/cDO15j6FTfpn/?ref=app
31st Oct 2017, 1:50 PM
DAB
DAB - avatar
0
# Using Python https://code.sololearn.com/cM4VQXlTNKYF/?ref=app
17th Nov 2017, 9:33 AM
#RahulVerma
#RahulVerma - avatar

Often have questions like this?

Learn more efficiently, for free:

  • Introduction to Python

    7.1M learners

  • Introduction to Java

    4.7M learners

  • Introduction to C

    1.5M learners

  • Introduction to HTML

    7.5M learners

See all courses
Hot today
Is this realistic enough?
1 Votes
𝙵𝙸𝙽𝙳 𝚃𝙷𝙴 𝙸𝙽𝙿𝚄𝚃 𝙾𝙵 𝚃𝙷𝙴 𝙿𝚁𝙾𝙶𝚁𝙰𝙼
1 Votes
"Which is harder to master — Machine Learning or Cybersecurity? And why?"
1 Votes
"What’s the best way to combine creativity and coding? Can storytelling improve web apps?"
1 Votes
Need friends
0 Votes
MASS N NUMBER OF OBJECT DELETION FROM A CLASS
0 Votes
Can someone explain inline and block elements please
0 Votes
I am a beginner, please teach me how to use Python
0 Votes
Python
1 Votes
Can u learn multiple language at the same time, without misplacing the formats of each with the other
0 Votes