Factorial

class Factorial
{ 
    // method to find factorial of given number 
    static int factorial(int n) 
    { 
        if (n == 0) 
          return 1; 
          
        return n*factorial(n-1); 
    } 
      
    // Driver method 
    public static void main(String[] args)  
    { 
        int num = 5; 
        System.out.println("Factorial of "+ num + " is " + factorial(5)); 
    } 
} 
This entry was posted in recursion. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *