Problem no 12: Factorial .

 QUESTION:

Factorial

Basic Accuracy: 54.57% Submissions: 4751 Points: 1

Given a positive integer, N. Find the factorial of N.
 

Example 1:

Input:
N = 5
Output:
120
Explanation:
5*4*3*2*1 = 120

Example 2:

Input:
N = 4
Output:
24
Explanation:
4*3*2*1 = 24


Your Task:
You don't need to read input or print anything. Your task is to complete the function factorial() which takes an integer N as input parameters and returns an integer, the factorial of N.

 

ANSWER:

long long int factorial(int N){
     long long int result=1;
     for(int i=1;i<=N;i++)
     {
         result*=i;
     }
     return result;
}

 

 

 

Comments

Popular posts from this blog

problem 3: given two integers N and M. The problem is to find the number closest to N and divisible by M. If there are more than one such number, then output the one having maximum absolute value.

problem no 7:Given two numbers A and B, find Kth digit from right of AB.

Problem no 16: count the number of squares below N.