Java 中某數階乘的約數
下面是一個 Java 程式,用於查詢某個數階乘的約數。
程式
import java.util.Scanner;
public class DivisorsOfFactorial {
public static long fact(int i) {
if(i <= 1) {
return 1;
}
return i * fact(i - 1);
}
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the n value :");
int n = sc.nextInt();
int result = 0;
long fact = fact(n);
for (int i = 1; i<= fact; i++) {
if (fact%i == 0) {
result = result+i;
}
}
System.out.println(result);
}
}輸出
Enter the n value : 4 60
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP