码迷,mamicode.com
首页 > 其他好文 > 详细

用while语句打印阶乘

时间:2019-08-03 11:09:10      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:int()   string   imp   ann   new   整数   stat   main   ring   

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语句打印阶乘

标签:int()   string   imp   ann   new   整数   stat   main   ring   

原文地址:https://www.cnblogs.com/lsswudi/p/11293928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!