使用 JavaScript 对数字进行阶乘
给定一个正整数 n,任务是在 javaScript 的帮助下找到该数字的阶乘。
例子:
Input : 4
Output : 24
Input : 5
Output : 120
方法 1:迭代方法在这种方法中,我们使用 for 循环来迭代数字序列并获得阶乘。
例子:
Factorial of a number using JavaScript
GeeksForGeeks
输出:
- 在点击按钮之前:
- 点击按钮后:
方法 2:递归方法:在这种方法中,我们一遍又一遍地调用相同的函数来获得一个数字的阶乘。
例子:
Factorial of a number
using JavaScript
GeeksForGeeks
输出:
- 在点击按钮之前:
- 点击按钮后: