N的阶乘

Posted 努力girl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了N的阶乘相关的知识,希望对你有一定的参考价值。

package n;

import java.util.Scanner;

public class jiechen {

 public static void main(String[] args)  

{      Scanner sc=new Scanner(System.in);       

  System.out.println("输入阶乘:");     

int n=sc.nextInt();  

System.out.println("结果为:"+f(n));

 }  

public static int f(int n)  {  

int sum=1;  

 for(int i=1;i<=n;i++)   

{    sum=sum*i;   

}   

return sum;  

}

以上是关于N的阶乘的主要内容,如果未能解决你的问题,请参考以下文章

MATLAB:编写一个实现n阶乘的函数?

阶乘怎么算?举例说明!

shell脚本实现n的阶乘

如何编写一个n的阶乘的程序

n的阶乘中用多少个2,3,5,7因数

n阶乘的非递归算法