用while语句打印阶乘
Posted lsswudi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用while语句打印阶乘相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; public class Whilejc public static void main(String[] args) Scanner s = new Scanner(System.in); System.out.println("欢迎使用求阶乘计算器,请输入一个整数"); int a = s.nextInt(); int d = a; int b = a-1; int c = a*b; while(b>1) a = b; b--; c= c*b; System.out.println(d+"的阶乘是"+c) ;
以上是关于用while语句打印阶乘的主要内容,如果未能解决你的问题,请参考以下文章