Finding the factorial of a number using iteration in Java

Problem:

Write a java method returns the factorial of a number using iteration.

Output:

Not applicable.

Solution:

public class interation_factorial
{
  static int factorial(int n )
  {
    int f = 1 ;
    for (int i =n;i>=1;i--)
    {
      f*=i;
    }
    return f;
  }
  public static void main(String[] args)
  {
    System.out.println(factorial(5));
  }
}


No comments :

Post a Comment

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact