Quote Originally Posted by kmdv View Post
For asking a "quick help" you can only get a quick ignore.

Whata re you having problem with? Do you know what this code does?

Code:
unsigned int Factorial(unsigned int number)
{
    unsigned int x = 1;
    for (unsigned int i = 2; i <= number; i++)
    {
        x *= i;
    }
    return x;
}





Thanx, you are very cool
I'm only a beginner