[Add] solved solutions

This commit is contained in:
2023-03-02 20:59:51 +07:00
parent 48081e0a05
commit 5499ac06c2
42 changed files with 1480 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#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;
}