Skip to content
Advertisement

Recursion problem – is this solution correct, and is there a simpler one?

I am new to recursion and I found the following Java problem:
Write a function that gets an integer n, and prints the numbers 1!,2!,3!,…,n!.
Here is what I did and I would like to know if this is the simplest solution (I am not sure because I used “for” loop to do it).

JavaScript

By the way, the previous exercise was to write a function that gets an integer n and returns n!, using recursion. Do you think I need to use it here and print it instead of calculating temp (n!) and print it? Thanks!

Advertisement

Answer

Here is a simple recursive solution:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement