一个简单的java applet程序,作业
http://hi.baidu.com/fengxue189/album/item/0255a189ea8c3b2fc9fc7a45.html题目和图片都在上面网页,对不...
http://hi.baidu.com/fengxue189/album/item/0255a189ea8c3b2fc9fc7a45.html
题目和图片都在上面网页,对不起各位高手,真的没分了,请大家帮帮忙。。 展开
题目和图片都在上面网页,对不起各位高手,真的没分了,请大家帮帮忙。。 展开
1个回答
展开全部
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class M extends Applet implements ActionListener {
Label l1, l2;
TextField t;
Button b;
public void init() {
l1 = new Label("请输入年龄");
l2 = new Label("此处显示答案");
t = new TextField(1);
b = new Button("确定");
b.addActionListener(this);
add(l1);
add(t);
add(b);
add(l2);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == b) {
int a = Integer.parseInt(t.getText());
if (a >= 60) {
l2.setText("老年人");
} else if (a >= 40 && a < 60) {
l2.setText("中年人");
} else if (a >= 20 && a < 40) {
l2.setText("青年人");
} else if (a < 20) {
l2.setText("少年和儿童");
}
}
}
}
import java.awt.event.*;
import java.applet.*;
public class M extends Applet implements ActionListener {
Label l1, l2;
TextField t;
Button b;
public void init() {
l1 = new Label("请输入年龄");
l2 = new Label("此处显示答案");
t = new TextField(1);
b = new Button("确定");
b.addActionListener(this);
add(l1);
add(t);
add(b);
add(l2);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == b) {
int a = Integer.parseInt(t.getText());
if (a >= 60) {
l2.setText("老年人");
} else if (a >= 40 && a < 60) {
l2.setText("中年人");
} else if (a >= 20 && a < 40) {
l2.setText("青年人");
} else if (a < 20) {
l2.setText("少年和儿童");
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询