Header Ads Widget

Small Factorial | Codechef solution

   Problem:-

Write a program to find the factorial value of any number entered by the user.

Input

The first line contains an integer T, the total number of testcases. Then T lines follow, each line contains an integer N.

Output

For each test case, display the factorial of the given number N in a new line.

Constraints

  •  T  1000
  •  N  20

Example

Input
3 
3 
4
5

Output

6
24
120

Code:-

#include <iostream>
using namespace std;

int main() {
int t;
long int n;
cin>>t;
while(t--)
{
cin>>n;
long int f=1;
for(int i=1;i<=n;i++)
{
f=f*i*1ll;
}
cout<<f<<endl;
}
    // your code goes here
    return 0;
}

Recommended Post:

Cracking the coding interview:-

 Array and string:-

Tree and graph:-

Hackerearth Problems:-

Hackerrank Problems:-

Data structure:-

Key points:-

 MCQs:-

Post a Comment

0 Comments