编写一个函数 long long factorial(int n),用于计算 n 的阶乘。(要求使用递归实现)
输入描述:
键盘输入任意一个整数 n ,范围为 1 - 20
输出描述:
输出 n 的阶乘
示例1
输入
5
输出
120
加载中...
#include
using namespace std; long long factorial(int n); int main() { int n; cin >> n; cout << factorial(n) << endl; return 0; } long long factorial(int n) { // write your code here...... }
5
120