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

n的阶乘

时间:2018-04-01 22:56:56      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:AC   stat   pos   rgs   inpu   post   util   number   pack   

package DJT;
import java.util.Scanner;
public class 阶乘 {
public static void main(String[] args)
{
int sum=1,i;
Scanner input=new Scanner(System.in);
System.out.println("enter a number:");
int n=input.nextInt();
for(i=1;i<=n;i++){
sum=sum*i;
System.out.println (sum);
}
}

}

n的阶乘

标签:AC   stat   pos   rgs   inpu   post   util   number   pack   

原文地址:https://www.cnblogs.com/MuXiao-DJT/p/8688630.html

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