Files
codechef/cpp/FLOW018.cpp
T
2023-03-02 20:59:51 +07:00

27 lines
335 B
C++

#include <iostream>
using namespace std;
unsigned long long int fact(int n)
{
unsigned long long int x = 1;
int i;
for (i = 1; i <= n; i++)
{
x *= i;
}
return x;
}
int main()
{
int t, n;
cin >> t;
while (t--)
{
cin >> n;
cout << fact(n) << endl;
}
return 0;
}