返回列表 發帖
  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import javax.swing.JTextField;
  4. import javax.swing.JButton;
  5. import java.awt.event.ActionListener;
  6. import java.awt.event.ActionEvent;
  7. public class P3 implements ActionListener
  8. {
  9.       
  10.         private JFrame fm;
  11.         private JLabel lb1, lb2;
  12.         private JTextField tf1, tf2;
  13.         private JButton btn1, btn2;
  14.       
  15.         P3()
  16.         {
  17.                 lb1=new JLabel("1坪=3.3058平方公尺",JLabel.CENTER);
  18.                 lb1.setBounds(0, 10, 215, 30);
  19.                 lb2=new JLabel("輸入坪數:");
  20.                 lb2.setBounds(10, 40, 60, 40);
  21.                
  22.                 tf1=new JTextField();
  23.                 tf1.setBounds(70, 45, 134, 30);
  24.                 tf2=new JTextField();
  25.                 tf2.setBounds(10, 85, 195, 40);
  26.                 tf2.setEditable(false);
  27.                
  28.                 btn1=new JButton("確定");
  29.                 btn1.setBounds(10, 135, 92, 25);
  30.                 btn2=new JButton("清除");
  31.                 btn2.setBounds(112, 135, 92, 25);
  32.                
  33.                 fm=new JFrame("土地面積計算");
  34.                 fm.setBounds(100, 100, 220, 200);
  35.                 fm.setVisible(true);
  36.                 fm.setResizable(false);
  37.                 fm.setLayout(null);
  38.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.                 fm.add(lb1);
  40.                 fm.add(lb2);
  41.                 fm.add(tf1);
  42.                 fm.add(tf2);
  43.                 fm.add(btn1);
  44.                 fm.add(btn2);
  45.                
  46.                 tf1.addActionListener(this);
  47.                 btn1.addActionListener(this);
  48.                 btn2.addActionListener(this);

  49.         }
  50.       
  51.         public void actionPerformed(ActionEvent e)
  52.         {
  53.                 if(e.getSource()==tf1 || e.getSource()==btn1)
  54.                 {
  55.                         double area=Double.parseDouble(tf1.getText())*3.3058;
  56.                         String areaStr=String.valueOf(area);
  57.                         tf2.setText("面積為: "+areaStr+" 平方公尺");
  58.                 }      
  59.                 if(e.getSource()==btn2)
  60.                 {
  61.                         tf1.setText("");
  62.                         tf2.setText("");
  63.                 }
  64.         }

  65.         public static void main(String[] args) {
  66.                 P3 app=new P3();
  67.         }

  68. }
複製代碼

TOP

返回列表