:::: MENU ::::
  • Suitable for all screen sizes

  • Easy to Customize

  • Customizable fonts.

Saturday, December 19, 2015


Factorial of a number:

import java.util.Scanner;

class Factorial

{

   public static void main()

   {

      int n, c, fact = 1;

      System.out.println("Enter a number");

      Scanner in = new Scanner(System.in);

      n = in.nextInt();

      if ( n < 0 )

         System.out.println("Number should be non-negative.");

      else

      {

         for ( c = 1 ; c <= n ; c++ )

            fact = fact*c;

         System.out.println("Factorial of "+n+" is = "+fact);

      }

   }

}

Thank you and make sure to like and comment.

0 comments:

Post a Comment

A call-to-action text Contact us