JavaAlgorithms/Maths/Factorial.java

32 lines
766 B
Java
Raw Normal View History

2019-09-28 11:15:22 +08:00
package Maths;
2020-05-07 22:00:58 +08:00
import java.util.*; //for importing scanner
2019-09-28 11:15:22 +08:00
public class Factorial {
public static void main(String[] args) {
2020-05-07 22:00:58 +08:00
int n = 1;
Scanner sc= new Scanner(System.in);
System.out.println("Enter Number");
n=sc.nextInt();
2019-09-28 11:15:22 +08:00
System.out.println(n + "! = " + factorial(n));
}
2019-12-11 12:35:54 +08:00
//Factorial = n! = n1 * (n-1) * (n-2)*...1
2019-09-28 11:15:22 +08:00
/**
2019-12-11 12:35:54 +08:00
* Calculate factorial N
2019-09-28 11:15:22 +08:00
*
* @param n the number
* @return the factorial of {@code n}
*/
public static long factorial(int n) {
if (n < 0) {
2019-12-11 12:35:54 +08:00
throw new ArithmeticException("n < 0"); //Dont work with less than 0
2019-09-28 11:15:22 +08:00
}
long fac = 1;
for (int i = 1; i <= n; ++i) {
fac *= i;
}
2019-12-11 12:35:54 +08:00
return fac; //Return factorial
2019-09-28 11:15:22 +08:00
}
}