#Z0325. 计算阶乘

计算阶乘

实现一个计算 n 的阶乘的程序,程序的框架已经写好了,现在需要填入frac函数的定义和实现。

n!=n×(n−1)!

输入格式

第一行输入一个整数n(t≤10)。

输出格式

输出 1 行,输出为n!。

#include <iostream>
using namespace std;
// 从这里开始写代码

int main() {
    int n;
    cin >> n;
    cout << frac(n) << endl;
    return 0;  
}

Statistics

Related

In following contests:

2024022204