Tuesday, 2 February 2016

Factorial Program in Java

Factorial Program in Java

Hello, friends, hitesh is here today we will write Factorial Program in Java; Here same concept is applied like C language, The main point to notice is; change the syntax of C with Java. Use System.out.print(); in place of printf();

Factorial Program in Java

Find Factorial of Any Number Program in Java Code

public class FactorialPro
{
 public static void main(String args[])
{
 for (int counter = 0; counter <=10; counter++)
{
 System.out.printf("%d! = %d\n", counter, factorial(counter));
 }
 } public static long factorial(long number)
{ if (number <= 1) return 1;
 else return number * factorial(number - 1);
 }
}

Output:

0! = 1
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
6! = 720
7! = 5040
8! = 40320
9! = 362880
10! = 3628800


No comments:

Post a Comment