用JAVA编写程序,生成一个简单的计算器界面,添加事件处理功能,实现基本的加、减
2个回答
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.awt.*;
import java.awt.event.*;
class Calculate extends Frame implements ActionListener
{ TextField t1=new TextField(5); //第一个操作数文本框
TextField t2=new TextField(5); //运算符文本框
TextField t3=new TextField(5); //第一个操作数文本框
TextField t4=new TextField(5); //结果文本框
Label L1=new Label("=");
Button btn=new Button("计算");
public Calculate()
{ setLayout(new FlowLayout());
add(t1);add(t2);add(t3);
add(L1);add(t4);add(btn);
btn.addActionListener(this); //注册动作事件监听者为当前对象
addWindowListener(new WindowAdapter()
{//关闭窗口事件
public void windowClosing(WindowEvent e)
{ dispose(); //释放窗口
System.exit(0); //退出程序
}
});
}
public void actionPerformed(ActionEvent e)
{
float x,y; //操作数变量
double result=0; //结果变量
String op;
try
{ //异常捕获机制
x=Float.parseFloat(t1.getText()); //将字符串数据转换成浮点型数据
y=Float.parseFloat(t3.getText());
op=t2.getText();
if(op.equals("+")) //运算符为"+"
result=x+y;
else if(op.equals("-")) //运算符为"-"
result=x-y;
else if(op.equals("*")) //运算符为"*"
result=x*y;
else if(op.equals("/")) //运算符为"/"
result=x/y;
t4.setText(Double.toString(result));
}catch(Exception ee){t4.setText("数据错误");} //捕获异常,数据错误时,显示信息
}
public static void main(String args[])
{
Calculate mainFrame = new Calculate();
mainFrame.setSize(400, 400);
mainFrame.setTitle("两个数的计算程序");
mainFrame.setVisible(true);
}
}
import java.awt.event.*;
class Calculate extends Frame implements ActionListener
{ TextField t1=new TextField(5); //第一个操作数文本框
TextField t2=new TextField(5); //运算符文本框
TextField t3=new TextField(5); //第一个操作数文本框
TextField t4=new TextField(5); //结果文本框
Label L1=new Label("=");
Button btn=new Button("计算");
public Calculate()
{ setLayout(new FlowLayout());
add(t1);add(t2);add(t3);
add(L1);add(t4);add(btn);
btn.addActionListener(this); //注册动作事件监听者为当前对象
addWindowListener(new WindowAdapter()
{//关闭窗口事件
public void windowClosing(WindowEvent e)
{ dispose(); //释放窗口
System.exit(0); //退出程序
}
});
}
public void actionPerformed(ActionEvent e)
{
float x,y; //操作数变量
double result=0; //结果变量
String op;
try
{ //异常捕获机制
x=Float.parseFloat(t1.getText()); //将字符串数据转换成浮点型数据
y=Float.parseFloat(t3.getText());
op=t2.getText();
if(op.equals("+")) //运算符为"+"
result=x+y;
else if(op.equals("-")) //运算符为"-"
result=x-y;
else if(op.equals("*")) //运算符为"*"
result=x*y;
else if(op.equals("/")) //运算符为"/"
result=x/y;
t4.setText(Double.toString(result));
}catch(Exception ee){t4.setText("数据错误");} //捕获异常,数据错误时,显示信息
}
public static void main(String args[])
{
Calculate mainFrame = new Calculate();
mainFrame.setSize(400, 400);
mainFrame.setTitle("两个数的计算程序");
mainFrame.setVisible(true);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |