·您的位置: 首页 » 资源教程 » 编程开发 » JAVA、JSP » 求出e=1+1/1!+1/2!+1/3!+……+1/n!+……的近似值的java applet程序

求出e=1+1/1!+1/2!+1/3!+……+1/n!+……的近似值的java applet程序

类别: JAVA教程  评论数:0 总得分:0
//求出e=1+1/1!+1/2!+1/3!+……+1/n!+……的近似值,要求误差小于0.0001import java.applet.*;import java.awt.*;import java.awt.event.*;public class AT1_1 extends Applet implements ActionListener{  TextField text1; Button Button1;  public void init() {  text1 = new TextField("0",10);  Button1 = new Button("清除");  add(text1);  add(Button1);  text1.addActionListener(this);  Button1.addActionListener(this); } public void start(){} public void stop(){} public void destory(){} public void paint(Graphics g) {   g.drawString("在文本区输入数字n后回车",10,100);  g.drawString("文本区显示1+1/1!+1/2!+1/3!+……+1/n!+……的近似值",10,120); } public void actionPerformed(ActionEvent e) {  if(e.getSource()==text1)  {   double sum=1,a=1;   int i=1;   int n=0;   try   {   n = Integer.valueOf(text1.getText()).intValue();   while(i<=n)   {     a = a*(1.0/i);    sum = sum + a;    i=i+1;   }   sum=sum*10000;   sum=Math.round(sum);   sum=sum/10000;   text1.setText(""+sum);     }   catch(NumberFormatException Event)   {   text1.setText("请输入数字字符");   }  }  else if(e.getSource()==Button1)  {   text1.setText("0");  }   }}


-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1