public class Factorial { public static int factorial(int n) { if (n == 0) return 1; else return n * factorial(n - 1); } }
If you like our content, feel free to follow me to stay updated.
Enter your email address:
We hate spam as much as you do.
Upload
No comments :
Post a Comment