Thursday 28 April 2011

FACTORIAL OF A GIVEN NUMBER


class Factorial{
 public static void main(String args[]){
  int num = Integer.parseInt(args[0]); //take argument as command line
  int result = 1;
  while(num>0){
   result = result * num;
   num--;
  }
  System.out.println("Factorial of Given no. is : "+result);
 }
}

No comments:

Post a Comment