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

Sample input:
4
1
2
5
3

Sample output:

1
2
120
6

Added by:adrian
Date:2004-05-28
Time limit:1s
Source limit:2000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All

hide comments
2019-05-30 10:48:02
we shuold use "double" data type to get 100! and most importantly output doesn't have trailing zeros (0s) .
2019-05-24 18:42:13
Good problem... I have learned very interesting method..
2019-01-05 13:59:14
i m getting wrong answer in c though it run well on codeblocks for the given test case.i m using an array to store the given set of numbers and recursive function fact to get factorial.where is the problem?
2018-12-28 17:00:08
Friends I don't know I ran my code on codeblocks it ran successfully but here on ideone.com it is giving runtime error!!!
2018-12-16 08:10:26
Wow! Carrying is a concept we were taught in class 2.
2018-12-15 20:02:20
AC in one go in C++
2018-11-23 12:59:47
Try not to do this problem in Java or python.
You will learn something new.

Last edit: 2018-11-23 13:00:21
2018-11-07 12:38:22
this is why I love python
2018-11-04 16:57:53
Hi

Last edit: 2018-11-04 16:58:23
2018-10-10 16:53:32
People say to use string/array but I find that using vector much better
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.