计算阶乘
Posted 高木子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算阶乘相关的知识,希望对你有一定的参考价值。
很简单的一个小例子,帮助那些初学者
1 public static void main(String[] args) { 2 System.out.println("请输入一个要计算的数:"); 3 Scanner in = new Scanner(System.in); 4 int a = in.nextInt(); 5 int x = 1; 6 System.out.print(a+"!="); 7 for(int i = a;i > 0;i --){ 8 System.out.print(i); 9 System.out.print("*"); 10 x = x*i; 11 } 12 System.out.print("="+x); 13 }
以上是关于计算阶乘的主要内容,如果未能解决你的问题,请参考以下文章