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

hide comments
shashisuman: 2016-06-26 20:23:18

JAVA 0.11 Oh Yeahhhhh. and for java users calculation in only main class no extra classes

abhash_yadav: 2016-06-02 13:25:15

showing wrong answer only because i had'nt put a newline after answer,though giving right answer

=(Francky)=> You can use newline, or space, but 1 2 120 6 and 121206 are different answers... you need to separate answers.

Last edit: 2016-06-02 13:32:05
thevillager: 2016-06-01 07:27:23

used array & got AC. coz u won't be able to solve 100! without arrays. 0.00

Last edit: 2016-06-01 08:24:15
get_right_jr: 2016-05-31 10:37:56

Source limit = 2000B !?
Couldnt include my custom IO functions
Anyway used BufferedReader & BigInteger and got it in 0.09
(Dont forget 100! is huuuuuugggggggeeeeee !!)

Last edit: 2016-05-31 10:39:34
top_gun007: 2016-05-24 04:09:41

learned something new by doing it in c

sk169: 2016-05-21 09:28:16

double data type in c++ gives the correct answer why is it giving wa?

eramangupta001: 2016-05-18 15:08:38

giving wa although my code is correct
can somebody help

mikeseeley06: 2016-05-15 00:10:07

Low hanging fruit with Java's BigInteger... =)

girishkumaral: 2016-05-02 02:24:58

I coded and tested in C++14 and it is working for 200! as well but source limit is not letting me submit :)

Last edit: 2016-05-06 06:12:34
rajat_mangla: 2016-03-31 13:14:25

getting runtime error as SIGABRT
what to do plz help !!! (code is in c++)


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