用java编程1!+2!+3!+4!+5!+6!+7!+8!+9!+10!

 我来答
非情林q
2010-04-15 · TA获得超过987个赞
知道小有建树答主
回答量:1157
采纳率:100%
帮助的人:969万
展开全部
public class Test {

public static void main(String[] args) {
System.out.println(jiecheng(10));
}

public static int jiecheng(int m) {
if (m == 1) {return 1;}
int result = 1;
for(int i = 1; i <= m; i++) {
result *= i;
}
return result + jiecheng(m - 1);
}
}
yefan_520
2010-04-15 · 超过36用户采纳过TA的回答
知道答主
回答量:100
采纳率:0%
帮助的人:92.9万
展开全部
int temp = 1;
int jiecheng = 0;
for (int i = 1; i <= 1; i++) {
temp *= i;
jiecheng += temp;
}
System.out.println(jiecheng);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
644792799
2010-04-15 · TA获得超过662个赞
知道小有建树答主
回答量:696
采纳率:100%
帮助的人:528万
展开全部
package com.baidu;

public class Testjc {

/**
* @author zpf<br>
* <b>create Date:</b>Apr 15, 2010 6:55:09 PM<br>
* <b>last modify Date:</b>Apr 15, 2010 6:55:09 PM<br>
* @param args
*/

public static void main(String[] args) {
// TODO Auto-generated method stub

int[] jcarray=new int[10];
int result=0;
for(int i=1;i<11;i++){
int jc=1;
for(int j=1;j<=i;j++){
jc*=j;
jcarray[i-1]=jc;
}
}
for(int i=0;i<jcarray.length;i++){
result+=jcarray[i];
System.out.print(jcarray[i]+"\t");
}
System.out.println();
System.out.print(result);
}

}
大概就这样吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式