资源描述:
《《用java编计算器》word版》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、importjava.applet.*;importjava.awt.*;importjavax.swing.*;importjava.awt.event.*;//importjava.math.*;publicclasscalextendsApplet{//定义所有需要使用的全局变量Stringstr="0";//暂存显示屏数据Stringsign="null";//暂存符号数据doublenum=0;//暂存内部运算数据booleanchange=false;//暂存内部四则运算起用GridLayout
2、g0,g1;//定义AWT布局部件JTextFieldnumber;Buttonnum_p,num_0,num_1,num_2,num_3,num_4,num_5,num_6,num_7,num_8,num_9;Buttonact_add,act_mul,act_div,act_sub;Buttonmat_sin,mat_cos,mat_tan;Buttondo_ans,do_del;Panelp0,p1;publicvoidinit()//主程序部分{//定义各个控件的样式number=newJTextF
3、ield(20);//显示屏number.setHorizontalAlignment(JTextField.RIGHT);number.setEnabled(false);number.setText("0");num_p=newButton("。");//小数点的按钮num_p.setForeground(Color.red);num_p.addActionListener(newgetbt());num_0=newButton("0");//数字0的按钮num_0.setForeground(Colo
4、r.red);num_0.addActionListener(newgetbt());num_1=newButton("1");//数字1的按钮num_1.setForeground(Color.red);num_1.addActionListener(newgetbt());num_2=newButton("2");//数字2的按钮num_2.setForeground(Color.red);num_2.addActionListener(newgetbt());num_3=newButton("3");
5、//数字3的按钮num_3.setForeground(Color.red);num_3.addActionListener(newgetbt());num_4=newButton("4");//数字4的按钮num_4.setForeground(Color.red);num_4.addActionListener(newgetbt());num_5=newButton("5");//数字5的按钮num_5.setForeground(Color.red);num_5.addActionListener(n
6、ewgetbt());num_6=newButton("6");//数字6的按钮num_6.setForeground(Color.red);num_6.addActionListener(newgetbt());num_7=newButton("7");//数字7的按钮num_7.setForeground(Color.red);num_7.addActionListener(newgetbt());num_8=newButton("8");//数字8的按钮num_8.setForeground(Colo
7、r.red);num_8.addActionListener(newgetbt());num_9=newButton("9");//数字9的按钮num_9.setForeground(Color.red);num_9.addActionListener(newgetbt());act_add=newButton("+");//加法的按钮act_add.setForeground(Color.red);act_add.addActionListener(newgetbt());act_sub=newButto
8、n("-");//减法的按钮act_sub.setForeground(Color.red);act_sub.addActionListener(newgetbt());act_mul=newButton("*");//乘法的按钮act_mul.setForeground(Color.red);act_mul.addActionListener(newgetbt());act_div=newButton("/")