计算并输出n的阶乘 (设n=10)

来源:7-1 编程练习

慕粉1649252996

2017-04-03 10:35

要求我们输入n的部分详细说明一下

写回答 关注

1回答

  • 慕粉1506143235
    2017-04-03 13:26:45

    import java.util.Scanner;

    public class Lei {

    public static void main(String args[])

    {

    int i=1;

    int product=1;

    Scanner input =new Scanner(System.in);

    System.out.print("请输入基数:");

    int n=input.nextInt();

    while(n>=i)

    {

         product*=i;

        i++;

    }

    System.out.println(n+"的阶乘为:"+product);

    }

    }


    慕粉1649...

    它为什么有个错 resource leak:"input"is never closed

    2017-04-13 17:09:04

    共 1 条回复 >

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题