For example Java Factorial Program
5! = 5 * 4 * 3 * 2 * 1 = 120.
See Also: C Program To Calculate Factorial Of A Given Number
5! = 5 * 4 * 3 * 2 * 1 = 120.
The value of 0! is 1, according to the convention for an empty product * The factorial operation is encountered in many areas of mathematics, notably in combinatorics, algebra, and mathematical analysis. Its most basic occurrence is the fact that there are n! ways to arrange n distinct objects into a sequence (i.e., permutations of the set of objects). This fact was known at least as early as the 12th century, to Indian scholars. Source: Wikipedia
See Also: C Program To Calculate Factorial Of A Given Number
Factorial Program in Java Source Code
import java.util.Scanner;
import java.io.*;
/* Factorial Program in Java Using For Loop */
public class factjava {
public static void main(String args[]) {
int fact = 1, num, i;
Scanner sc = new Scanner(System.in);
System.out.print("Enter The Number That You Want Factorial : \n\n");
num = sc.nextInt();
for (i = 1; i <= num; i++) {
fact = fact * i;
}
System.out.print("\nFactorial Is = " + fact);
}
}
See Also: C++ Program To Calculate Factorial Of A Given Number
0 Comments: