mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 18:10:47 +00:00
27 lines
335 B
C++
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;
|
|
}
|