Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 小弟刚开始学,有2个题目不会。(计算e=1+1/1!+1/2!+…+1/n!)
jasonwing27





发贴: 66
积分: 0
于 2004-09-08 21:46 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
编写一个Java Application程序,接受用户输入的一个整数n,计算e=1+1/1!+1/2!+1/3!+1/4!+…+1/n!,(检查1/n!<1E-5)

编写程序接收用户输入整数n(n>0),输出结果如下
n=3
*****
***
*


why edited on 2004-09-08 21:55

作者 Re:小弟刚开始学,有2个题目不会。 [Re:jasonwing27]
why

問題兒童

总版主


发贴: 4629
积分: 388
于 2004-09-08 21:54 user profilesend a private message to usersend email to whysearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
请你把你的程序贴上来
否则天晓得它在干啥?



作者 Re:小弟刚开始学,有2个题目不会。(计算e=1+1/1!+1/2!+…+1/n!) [Re:jasonwing27]
solar_w





发贴: 3
积分: 0
于 2004-09-08 23:51 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
第一个我做出来了
不知道有没有不对的地方,请大家指点



作者 Re:小弟刚开始学,有2个题目不会。(计算e=1+1/1!+1/2!+…+1/n!) [Re:jasonwing27]
why

問題兒童

总版主


发贴: 4629
积分: 388
于 2004-09-09 00:20 user profilesend a private message to usersend email to whysearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
not Math.E-5 it's 1.0e-5 = 0.00001


final double delta = 1.0e-5;

double iFactorial = 1.0;
double sum = 1.0;
for (int i=1; i<=n; i++) {
iFactorial = iFactorial / (double)i;
if (iFactorial < delta) {
break;
} else {
sum = sum + iFactorial;
}
}


why edited on 2004-09-09 00:25

作者 Re:小弟刚开始学,有2个题目不会。(计算e=1+1/1!+1/2!+…+1/n!) [Re:jasonwing27]
solar_w





发贴: 3
积分: 0
于 2004-09-09 01:50 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
呵呵
刚做出来了就急急放上来了
你指出来的问题我一开始就有点疑问

正在学习中~~~~~~~~~~~




flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923