程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 計算(LnN!)的值,計算lnn

計算(LnN!)的值,計算lnn

編輯:JAVA綜合教程

計算(LnN!)的值,計算lnn



import java.util.*;
import java.math.*;
public class CaculatorLnN {

public static void main(String[] args) {
// TODO 自動生成的方法存根
int N;
System.out.println("please input N");
Scanner in=new Scanner(System.in);
N=in.nextInt();
double ln;
factorial fac=new factorial();
int factor=fac.factorial(N);
System.out.println(ln=Math.log(N));
}

}
class factorial{
static int one=1;
public static int factorial(int N){
if(N<0){
System.out.println("請輸入正確的整數");
return -1;
}
if(N==1||N==0){
return one;
}
return factorial(N-2)*factorial(N-1);
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved