//계산기 만들기 import java.awt.*; import javax.swing.*; public class homework02 extends JFrame { private Label lb = new Label("계산기"); private TextArea tf = new TextArea(); private Button[] bt = new Button[24]; private String[] str = { "%", "CE", "C", "X", "1/ⅹ", "ⅹ²", "²√ⅹ", "÷", "7", "8", "9", "×", "4", "5", "6", "-", "1", "2", "3", "+", "+/-", "0", ".", "=" }; private BorderLayout bl = new BorderLa..
import java.awt.*; import javax.swing.*; public class Exam33 extends JFrame { private FileDialog fdlg = new FileDialog(this, "열기", FileDialog.LOAD); private FileDialog fdlg1 = new FileDialog(this, "저장", FileDialog.SAVE); public Exam33(String title) {// 생성자 구성 super(title); // 상위 생성자를 호출 super.setSize(500, 500); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Dimension screen = Toolkit.getDefault..
import java.awt.*; import javax.swing.*; public class Exam30 extends JFrame { // 내용 구성에 따라 모두 정의 private Label blood_lb = new Label("혈액형"); // 디폴트로 왼쪽에 배치 private Choice blood_ch = new Choice(); private Label birth_lb = new Label("생년월일"); private Choice year_ch = new Choice(); private Label year_lb = new Label("년"); private Choice month_ch = new Choice(); private Label month_lb = new Label("월");..