-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCalculator.java
More file actions
92 lines (81 loc) · 2.81 KB
/
Copy pathCalculator.java
File metadata and controls
92 lines (81 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Calculator {
private JTextField display;
private double num1 = 0;
private double num2 = 0;
private char operator;
public Calculator() {
JFrame frame = new JFrame("Calculator");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 400);
display = new JTextField();
display.setEditable(false);
display.setHorizontalAlignment(JTextField.RIGHT);
frame.add(display, BorderLayout.NORTH);
JPanel buttonPanel = new JPanel();
buttonPanel.setLayout(new GridLayout(5, 4));
frame.add(buttonPanel, BorderLayout.CENTER);
for (int i = 1; i <= 9; i++) {
addButton(buttonPanel, String.valueOf(i));
}
addButton(buttonPanel, "0");
addButton(buttonPanel, "+");
addButton(buttonPanel, "-");
addButton(buttonPanel, "*");
addButton(buttonPanel, "/");
addButton(buttonPanel, "=");
addButton(buttonPanel, "C");
frame.setVisible(true);
}
private void addButton(Container container, String text) {
JButton button = new JButton(text);
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (text.equals("=")) {
calculate();
} else if (text.equals("C")) {
clear();
} else if ("+-*/".contains(text)) {
operator = text.charAt(0);
num1 = Double.parseDouble(display.getText());
display.setText("");
} else {
display.setText(display.getText() + text);
}
}
});
container.add(button);
}
private void calculate() {
num2 = Double.parseDouble(display.getText());
switch (operator) {
case '+':
display.setText(String.valueOf(num1 + num2));
break;
case '-':
display.setText(String.valueOf(num1 - num2));
break;
case '*':
display.setText(String.valueOf(num1 * num2));
break;
case '/':
if (num2 != 0) {
display.setText(String.valueOf(num1 / num2));
} else {
display.setText("Error: Division by zero");
}
break;
}
}
private void clear() {
display.setText("");
num1 = 0;
num2 = 0;
}
public static void main(String[] args) {
new Calculator();
}
}