FCTRL2 - Small factorials
You are asked to calculate factorials of some small positive integers.
Input
An integer t, 1 ≤ t ≤ 100, denoting the number of testcases, followed by t lines, each containing a single integer n, 1 ≤ n ≤ 100.
Output
For each integer n given at input, display a line with the value of n!
Example
Input: 4 1 2 5 3 Output: 1 2 120 6
hide comments
konraddylewski:
2018-11-04 16:57:53
Hi Last edit: 2018-11-04 16:58:23 |
|
sydneyaldo:
2018-10-10 16:53:32
People say to use string/array but I find that using vector much better |
|
chgon:
2018-09-08 21:29:06
Represent integer in string if not using Java. |
|
anant6025:
2018-09-04 18:48:25
If you dont know the array approach then i'll prefer that you must first learn it from the geeksforgeeks tutorial as it'll be really helpful in the coming future as well. |
|
dishant34:
2018-08-28 18:35:28
Max integer is 100 and its factorial has more than 150 digits, so use the array. |
|
probeta:
2018-08-28 18:21:42
Python always comes to the rescue in case of very very large numbers ! |
|
n1trob4ct3r:
2018-08-22 19:11:19
easy. AC in one go. |
|
yoinfinite_25:
2018-08-19 19:50:56
I keep getting 'wrong answer' in C. Tried calling a function after input of 'n' in a function. What am I doing wrong? |
|
mushusax:
2018-08-17 23:58:03
Getting wrong answer on submit even though I'm getting correct answer. It's a problem with newline. How should output be structured? Should last number end in new line?
|
|
martinho_11235:
2018-08-09 13:12:54
Before submit you have to test with 100...
|
Added by: | adrian |
Date: | 2004-05-28 |
Time limit: | 1s |
Source limit: | 2000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |