资源描述:
《Java考试题之swt组件》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Java考试题之swt组件一、JavaTest01C:.│.classpath│.project│├─.settings│org.eclipse.jdt.core.prefs│├─bin│└─com│└─example│└─test│Main.class│WindowsActionEvent.class│└─src└─com└─example└─testMain.javaWindowsActionEvent.java//WindowsActionEvent.javapackagecom.example.test;importjava.awt.FlowLa
2、yout;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjavax.swing.JButton;importjavax.swing.JFrame;importjavax.swing.JTextField;/*一、编写一个GUI程序,要求如下*1.有一个窗口,标题是计算sin的值,布局是FlowLyaout布局*初始大小是(200,300),初始位置是(120,260)*2.窗口中有两个文本框(JTextField),名字分别是input和show,可见
3、字符长度不小于15*3.窗口中有两个按钮(JButton),button_1和button_2,这两个按钮上的名字分别是"按度计算","按弧度计算"*4.将文本框和按钮添加到窗口,顺序是input,button_1,button_2,show*5.用户在input中输入一个数,比如60,*单击"按度计算",在show中显示(sin)正弦60度的值*单击"按弧度计算",在show中显示(sin)正弦60弧度的值**提示:Math类中的静态方法sin(x)将x看成弧度,因此,要计算60度的正弦值,必须写成*Math.sin(60*3.1415926/180)
4、*或Math.sin(60*Math.PI/180)**在命令行输入一个数,程序输出这个数的sin值*在命令行输入2个数,然后计算Math.pow(a,b)***/publicclassWindowsActionEventextendsJFrameimplementsActionListener{JTextFieldinput,show;JButtonbutton_1,button_2;WindowsActionEvent(){setTitle("计算sin的值");//setSize(200,300);//setLocation(120,260);se
5、tBounds(120,260,200,300);setLayout(newFlowLayout());input=newJTextField(15);show=newJTextField(15);button_1=newJButton("按度计算");button_2=newJButton("按弧度计算");add(input);add(button_1);add(button_2);add(show);input.addActionListener(this);button_1.addActionListener(this);button_2.add
6、ActionListener(this);setVisible(true);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);}@OverridepublicvoidactionPerformed(ActionEvente){if(e.getSource()==button_1){Stringstr=input.getText();doublea=Double.parseDouble(str);doubler=Math.sin(a*3.1415926/180);show.setText(""+r);}if(e.
7、getSource()==button_2){Stringstr=input.getText();doublea=Double.parseDouble(str);doubler=Math.sin(a);show.setText(""+r);}}}//Main.javapackagecom.example.test;publicclassMain{publicstaticvoidmain(String[]args){WindowsActionEventwae=newWindowsActionEvent();}}二、JavaTest02C:.│.classp
8、ath│.project│├─.settings│org.eclipse.jdt