编写一个JAVA程序,从键盘输入一个数,计算阶乘.如输入:3,则输出1!+2!+3!

 我来答
郭00少
2013-06-24 · TA获得超过156个赞
知道答主
回答量:248
采纳率:0%
帮助的人:74.8万
展开全部
package com;
import java.util.Scanner;
public class Help {
public static void main(String[] args) {
System.out.println("请输入一个一个整数:");
Scanner input=new Scanner(System.in);
int a=input.nextInt();
int result=jie(a);
System.out.println("结果是:"+result);
}

private static int jie(int n){
int result=1;
if(n==0){
return 1;
}else {
for(int i=1;i<=n;i++){
result*=i;
}
return result;
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
charlycong
2013-06-24 · TA获得超过445个赞
知道小有建树答主
回答量:243
采纳率:0%
帮助的人:288万
展开全部
import java.util.Scanner;
 
publicclass P4_2 {
      publicstaticvoid main(String args[]){
            Scanner c = new Scanner(System.in);
            int in=0;
            try{
                  in = c.nextInt();
            }catch (Exception e) {
            }
            int sum = 0;
            int currentItem = 1;
            if(in<=0){
                  System.out.println("请输入正整数!");
            }else{
                  for (int i = 1; i <= in; i++) {
                        currentItem =currentItem*i;
                        sum = sum+currentItem;
                  }
                  System.out.println(sum);
            }
    }
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
115327884
推荐于2016-01-06 · 超过35用户采纳过TA的回答
知道答主
回答量:194
采纳率:0%
帮助的人:102万
展开全部
Scanner scanner = new Scanner(System.in);
System.out.print("输入整数:");
String strIn = scanner.next();
double m = 0;
int in = 0;
if (strIn.matches("[0-9]+")) {
in = Integer.parseInt(strIn);
for (int i = 1; i <= in; i++) {
int tool = 1;
for (int j = 1; j <= i; j++) {
tool *= j;
}
m += tool;
}
System.out.println(m);
} else {
System.out.println("输入错误");
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小号乐0W
2013-06-24
知道答主
回答量:16
采纳率:0%
帮助的人:6.9万
展开全部
package com.chen;

import java.util.Scanner;

public class jiecheng {

static int a;
static int e=0;
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
a=sc.nextInt();
for(int i=1;i<=a;i++){
int c =Jie(i);
e+=c;
}

System.out.println(e);
}
public static int Jie(int n){
if(n==1){
return 1;
}

return n*Jie(n-1);
}

临时瞎写的 希望能帮上你~
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式