四种方法计算n!并输出算式(Java/阶乘)
题目要求
分别用for、while和do-while循环语句以及递归方法计算n!,并输出算式
代码段
package package名;
import java.util.Scanner; //引入包
public class A2_19 {
static int factorial(int n)
{ //递归函数
int l=n-1;
if(n==1)
{
return 1;
}
else
{
System.out.print("*"+l);
l--;
return n*factorial(n-1);
}
}
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
System.out.println("请输入数字n:");
int n=input.nextInt();
int n1 = n,n2=n,n3=n,n4=n;
int i,j =n-1,k=n-1;
//001 for
System.out.printf("for循环计算得n!="+n);
for(i=n-1;i>0;i--)
{
n1=n1*i;
System.out.printf("*"+i);
}
System.out.println("="+n1);
//002 while
System.out.printf("while循环计算得n!="+n);
while(j>0)
{
n2=n2*j;
System.out.printf("*"+j);
j--;
};
System.out.println("="+n2);
//003 do-while
System.out.printf("do-while循环计算得n!="+n);
do
{
n3=n3*k;
System.out.printf("*"+k);
k--;
}while(k>0);
System.out.println("="+n3);
//004 递归
System.out.printf("递归计算得n!="+n);
n4=factorial(n);
System.out.println("="+n4);
}
}
测试结果
原文作者:这是一个新手
原文地址: https://blog.csdn.net/qq_21401965/article/details/101126803
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/qq_21401965/article/details/101126803
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章