1153 Simple Factorial

SemiColon
By -
0 minute read
0
URI Online Judge | 1153

Simple Factorial

Read a value N. Calculate and write its corresponding factorial. Factorial of N = N * (N-1) * (N-2) * (N-3) * ... * 1.

Input

The input contains an integer value N (0 < N < 13).

Output

The output contains an integer value corresponding to the factorial of N.
Input SampleOutput Sample
424

Solution:
#include <stdio.h>
int main()
{
    int n,i,pro=1;
    scanf("%d", &n);
    for(i=n;i>=1;i--)
        pro*=i;
    printf ("%d\n",pro);
    return 0;
}



Tags:

Post a Comment

0Comments

Post a Comment (0)