Java程序使用while循环来计算给定数字的阶乘

特定数字(n)的阶乘是从0到n(包括n)的所有数字的乘积,即数字5的阶乘将为1 * 2 * 3 * 4 * 5 = 120。

  •  查找给定数字的阶乘。

  •  创建一个变量阶乘以1。

  •  在条件i(初始值1)小于给定数字的条件下开始while循环" title="while循环">while循环。

  •  在循环中,使用i的多个阶乘并将其分配给阶乘并递增i。

  •  最后,打印阶乘的值。

示例

import java.util.Scanner;

public class FactorialWithWhileLoop {

   public static void main(String args[]){

      int i =1, factorial=1, number;

      System.out.println("输入您需要查找阶乘的数字:");

      Scanner sc = new Scanner(System.in);

      number = sc.nextInt();

      while(i <=number) {

         factorial = factorial * i;

         i++;

      }

      System.out.println("Factorial of the given number is:: "+factorial);

   }

}

输出结果

输入您需要查找阶乘的数字:

5

Factorial of the given number is:: 120

以上是 Java程序使用while循环来计算给定数字的阶乘 的全部内容, 来源链接: utcz.com/z/358260.html

回到顶部