Here is the exact question

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

I have coded the SPOJ small factorials problem no 24, but the judge is saying as wrong answer. Please have a look at my code and help me.

class Program
{
    static void Main(string[] args)
    {
        long numOfTestCases=0;
        string factForAll = "";
        numOfTestCases = Convert.ToInt32(Console.ReadLine());
        long[] numArray = new long[numOfTestCases];
        for (long i = 0; i < numArray.Length; i++)
        {
            numArray[i]= Convert.ToInt64(Console.ReadLine());
        }

        foreach (var item in numArray)
        {
            long factResult = findFact(item);
            factForAll += factResult+"\n";
        }
        Console.WriteLine();
        Console.WriteLine(factForAll);

    }
    public static long findFact(long number)
    {
        long factorial = 1;
        if (number<=1)
        {
            factorial = 1;
        }
        for (long i = 1; i <=number; i++)
        {
            factorial *= i;
        }
        return factorial;
    }
}
link|improve this question

50% accept rate
Can you post a link to the question please, or the actual question. – Jethro Jul 4 '11 at 16:49
Because there isn't more information, I would guess it's wrong because it doesn't answer the question right away. You build a string and print it after all the input is read and you don't tell them how to break out (pressing F6, Enter, by the way). – agent-j Jul 4 '11 at 16:54
feedback

2 Answers

After looking at the first comment you need to write each answer on a single line, in c3 that is "\r\n", not "\n".

link|improve this answer
feedback

The problem specifies that the numbers are in the range 1 <= n <= 100. You are calculating the factorial of these in long variables. The range of a long is –9223372036854775808 to 9223372036854775807. The result will easily overflow this range.

For example,

100! = 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000

You will need to use something like BigInteger to manipulate numbers this large.

link|improve this answer
Thank you.. I figured out and modified the code.. Now its working. But unfortunately the judge's system is not configured to run on the latest framework and hence my solution is treated as wrong answer – varunit Jul 5 '11 at 1:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.