ImageVerifierCode 换一换
格式:DOCX , 页数:14 ,大小:50.88KB ,
资源ID:7489831      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/7489831.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(科学计算器程序Java代码.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

科学计算器程序Java代码.docx

1、科学计算器程序Java代码科学计算器程序Java代码功能举例:源程序如下:import java.awt.BorderLayout;import java.awt.Color;import java.awt.Dimension;import java.awt.Font;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.text.DecimalFormat;import javax.swing.BorderFactory;imp

2、ort javax.swing.ButtonGroup;import javax.swing.JButton;import javax.swing.JCheckBoxMenuItem;import javax.swing.JFrame;import javax.swing.JMenu;import javax.swing.JMenuBar;import javax.swing.JMenuItem;import javax.swing.JPanel;import javax.swing.JRadioButtonMenuItem;import javax.swing.JTextField;publ

3、ic class Calucator extends JFrame private JTextField tf; private JPanel panel1, panel2, panel3, panel4; private JMenuBar myBar; private JMenu menu1, menu2, menu3; private JMenuItem editItem1, editItem2, help1, help2, help3; private JRadioButtonMenuItem seeItem1, seeItem2;/单选框 private JCheckBoxMenuIt

4、em seeItem3;/复选框 private ButtonGroup bgb; private String back; private boolean IfResult = true, flag = false; private String oper = =; private double result = 0; private Num numActionListener; private DecimalFormat df; public Calucator() super(科学计算器);/设置标题栏 df = new DecimalFormat(#.#);/保留四位小数 this.s

5、etLayout(new BorderLayout(10, 5); panel1 = new JPanel(new GridLayout(1, 3, 10, 10); panel2 = new JPanel(new GridLayout(5, 6, 5, 5);/5行6列 panel3 = new JPanel(new GridLayout(5, 1, 5, 5); panel4 = new JPanel(new BorderLayout(5, 5); /* * 菜单栏 */ myBar = new JMenuBar(); menu1 = new JMenu(编辑(E); menu2 = ne

6、w JMenu(查看(V); menu3 = new JMenu(帮助(H); menu1.setFont(new Font(宋体, Font.PLAIN, 12); menu2.setFont(new Font(宋体, Font.PLAIN, 12); menu3.setFont(new Font(宋体, Font.PLAIN, 12); /* * 编辑栏 */ editItem1 = new JMenuItem(复制(C) Ctrl+C); editItem2 = new JMenuItem(粘贴(P) Ctrl+V); editItem1.setFont(new Font(宋体,Font

7、.PLAIN,12); editItem2.setFont(new Font(宋体,Font.PLAIN,12); /* * 查看栏 */ seeItem1 = new JRadioButtonMenuItem(科学型(T); seeItem2 = new JRadioButtonMenuItem(标准型(S); seeItem3 = new JCheckBoxMenuItem(数字分组(I); seeItem1.setFont(new Font(宋体,Font.PLAIN,12); seeItem2.setFont(new Font(宋体,Font.PLAIN,12); seeItem3.s

8、etFont(new Font(宋体,Font.PLAIN,12); /* * 帮助栏 */ help1 = new JMenuItem(帮助主题(H); help2 = new JMenuItem(关于计算器(A); help1.setFont(new Font(宋体,Font.PLAIN,12); help2.setFont(new Font(宋体,Font.PLAIN,12); bgb = new ButtonGroup();/选项组 menu1.add(editItem1); menu1.add(editItem2); menu2.add(seeItem1); menu2.add(se

9、eItem2); menu2.addSeparator();/添加一条分割线 menu2.add(seeItem3); menu3.add(help1); menu3.addSeparator();/添加一条分割线 menu3.add(help2); myBar.add(menu1); myBar.add(menu2); myBar.add(menu3); this.setJMenuBar(myBar); numActionListener = new Num();/实现数字监听 /* * 文本域,即为计算器的屏幕显示区域 */ tf = new JTextField(); tf.setEdi

10、table(false);/文本区域不可编辑 tf.setBackground(Color.white);/文本区域的背景色 tf.setHorizontalAlignment(JTextField.RIGHT);/文字右对齐 tf.setText(0); tf.setBorder(BorderFactory.createLoweredBevelBorder(); init();/对计算器进行初始化 /* * 初始化操作 * 添加按钮 */ private void init() addButton(panel1, Backspace, new Clear(), Color.red); add

11、Button(panel1, CE, new Clear(), Color.red); addButton(panel1, C, new Clear(), Color.red); addButton(panel2, 1/x, new Signs(), Color.magenta); addButton(panel2, log, new Signs(), Color.magenta); addButton(panel2, 7, numActionListener, Color.blue); addButton(panel2, 8, numActionListener, Color.blue);

12、addButton(panel2, 9, numActionListener, Color.blue); addButton(panel2, , new Signs(), Color.red); addButton(panel2, n!, new Signs(), Color.magenta); addButton(panel2, sqrt, new Signs(), Color.magenta); addButton(panel2, 4, numActionListener, Color.blue); addButton(panel2, 5, numActionListener, Color

13、.blue); addButton(panel2, 6, numActionListener, Color.blue); addButton(panel2, , new Signs(), Color.red); addButton(panel2, sin, new Signs(), Color.magenta); addButton(panel2, x2, new Signs(), Color.magenta); addButton(panel2, 1, numActionListener, Color.blue); addButton(panel2, 2, numActionListener

14、, Color.blue); addButton(panel2, 3, numActionListener, Color.blue); addButton(panel2, -, new Signs(), Color.red); addButton(panel2, cos, new Signs(), Color.magenta); addButton(panel2, x3, new Signs(), Color.magenta); addButton(panel2, 0, numActionListener, Color.blue); addButton(panel2, -/+, new Cle

15、ar(), Color.blue); addButton(panel2, ., new Dot(), Color.blue); addButton(panel2, +, new Signs(), Color.red); addButton(panel2, tan, new Signs(), Color.magenta); addButton(panel2, %, new Signs(), Color.magenta); addButton(panel2, , numActionListener, Color.orange); addButton(panel2, e, numActionList

16、ener, Color.orange); addButton(panel2, , new Signs(), Color.orange); addButton(panel2, =, new Signs(), Color.red); JButton btns = new JButton(计算器); btns.setBorder(BorderFactory.createLoweredBevelBorder(); btns.setEnabled(false);/按钮不可操作 btns.setPreferredSize(new Dimension(20, 20); panel3.add(btns);/加

17、入按钮 addButton(panel3, MC, null, Color.red); addButton(panel3, MR, null, Color.red); addButton(panel3, MS, null, Color.red); addButton(panel3, M+, null, Color.red); panel4.add(panel1, BorderLayout.NORTH); panel4.add(panel2, BorderLayout.CENTER); this.add(tf, BorderLayout.NORTH); this.add(panel3, Bord

18、erLayout.WEST); this.add(panel4); pack(); this.setResizable(false);/窗口不可改变大小 this.setLocation(300, 200); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); /* * 统一设置按钮的的使用方式 * param panel * param name * param action * param color */ private void addButton(JPanel panel, String name, ActionListener

19、action, Color color) JButton bt = new JButton(name); panel.add(bt);/在面板上增加按钮 bt.setForeground(color);/设置前景(字体)颜色 bt.addActionListener(action);/增加监听事件 /* * 计算器的基础操作(+ - ) * param x */ private void getResult (double x) if(oper = +)result += x; else if(oper = -)result -= x; else if(oper = )result *= x;

20、 else if(oper = )result /= x; else if(oper = =)result = x; tf.setText(df.format(result); /* * 运算符号的事件监听 */ class Signs implements ActionListener public void actionPerformed(ActionEvent e) /* * 用ActionEvent对象的getActionCommand()方法 * 取得与引发事件对象相关的字符串 */ String str = e.getActionCommand(); /* sqrt求平方根 */

21、if(str.equals(sqrt) double i = Double.parseDouble(tf.getText(); if(i=0) /* * String.valueOf() 转换为字符串 * df.format() 按要求保留四位小数 * Math.sqrt() 求算数平方根 */ tf.setText(String.valueOf(df.format(Math.sqrt(i); else tf.setText(负数不能开平方根); /* log求常用对数 */ else if(str.equals(log) double i = Double.parseDouble(tf.ge

22、tText(); if(i0) tf.setText(String.valueOf(df.format(Math.log(i); else tf.setText(负数不能求对数); /* %求百分比 */ else if(str.equals(%) tf.setText(df.format(Double.parseDouble(tf.getText() / 100); /* 1/x求倒数 */ else if(str.equals(1/x) if(Double.parseDouble(tf.getText() = 0) tf.setText(除数不能为零); else tf.setText(d

23、f.format(1 / Double.parseDouble(tf.getText(); /* sin求正弦函数 */ else if(str.equals(sin) double i = Double.parseDouble(tf.getText(); tf.setText(String.valueOf(df.format(Math.sin(i); /* cos求余弦函数 */ else if(str.equals(cos) double i = Double.parseDouble(tf.getText(); tf.setText(String.valueOf(df.format(Mat

24、h.cos(i); /* tan求正切函数 */ else if(str.equals(tan) double i = Double.parseDouble(tf.getText(); tf.setText(String.valueOf(df.format(Math.tan(i); /* n!求阶乘 */ else if(str.equals(n!) double i = Double.parseDouble(tf.getText(); if(i%2=0)|(i%2=1)/判断为整数放进行阶乘操作 int j = (int)i;/强制类型转换 int result=1; for(int k=1;k 0) if(tf.getText().length() 1) tf.setText(tf.getText().substring(0, tf.getText().length() - 1); /使用退格删除最后一位字符 else tf.setText(0); IfResult = true; else if(tf.getText().length() 2)

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1