Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

scientific calculator in Java

scientific calculator using even-driven programming paradigm of Java.
  1. import java.awt.*;
  2. import java.awt.event.*;
  3. import javax.swing.*;
  4. import javax.swing.event.*;
  5.  
  6. class Calculator extends JFrame {
  7. private final Font BIGGER_FONT = new Font("monspaced",Font.PLAIN, 20);
  8. private JTextField textfield;
  9. private boolean number = true;
  10. private String equalOp = "=";
  11. private CalculatorOp op = new CalculatorOp();
  12. public Calculator() {
  13. textfield = new JTextField("", 12);
  14. textfield.setHorizontalAlignment(JTextField.RIGHT);
  15. textfield.setFont(BIGGER_FONT);
  16. ActionListener numberListener = new NumberListener();
  17. String buttonOrder = "1234567890 ";
  18. JPanel buttonPanel = new JPanel();
  19. buttonPanel.setLayout(new GridLayout(4, 4, 4, 4));
  20. for (int i = 0; i < buttonOrder.length(); i++) {
  21. String key = buttonOrder.substring(i, i+1);
  22. if (key.equals(" ")) {
  23. buttonPanel.add(new JLabel(""));
  24. } else {
  25. JButton button = new JButton(key);
  26. button.addActionListener(numberListener);
  27. button.setFont(BIGGER_FONT);
  28. buttonPanel.add(button);
  29. }
  30. }
  31. ActionListener operatorListener = new OperatorListener();
  32. JPanel panel = new JPanel();
  33. panel.setLayout(new GridLayout(4, 4, 4, 4));
  34. String[] opOrder = {"+", "-", "*", "/","=","C","sin","cos","log"};
  35. for (int i = 0; i < opOrder.length; i++) {
  36. JButton button = new JButton(opOrder[i]);
  37. button.addActionListener(operatorListener);
  38. button.setFont(BIGGER_FONT);
  39. panel.add(button);
  40. }
  41. JPanel pan = new JPanel();
  42. pan.setLayout(new BorderLayout(4, 4));
  43. pan.add(textfield, BorderLayout.NORTH );
  44. pan.add(buttonPanel , BorderLayout.CENTER);
  45. pan.add(panel , BorderLayout.EAST);
  46. this.setContentPane(pan);
  47. this.pack();
  48. this.setTitle("Calculator");
  49. this.setResizable(false);
  50. }
  51. private void action() {
  52. number = true;
  53. textfield.setText("");
  54. equalOp = "=";
  55. op.setTotal("");
  56. }
  57. class OperatorListener implements ActionListener {
  58. public void actionPerformed(ActionEvent e) {
  59. String displayText = textfield.getText();
  60. if (e.getActionCommand().equals("sin"))
  61. {
  62. textfield.setText("" + Math.sin(Double.valueOf(displayText).doubleValue()));
  63. }else
  64. if (e.getActionCommand().equals("cos"))
  65. {
  66. textfield.setText("" + Math.cos(Double.valueOf(displayText).doubleValue()));
  67. }
  68. else
  69. if (e.getActionCommand().equals("log"))
  70. {
  71. textfield.setText("" + Math.log(Double.valueOf(displayText).doubleValue()));
  72. }
  73. else if (e.getActionCommand().equals("C"))
  74. {
  75. textfield.setText("");
  76. }
  77.  
  78. else
  79. {
  80. if (number)
  81. {
  82. action();
  83. textfield.setText("");
  84. }
  85. else
  86. {
  87. number = true;
  88. if (equalOp.equals("="))
  89. {
  90. op.setTotal(displayText);
  91. }else
  92. if (equalOp.equals("+"))
  93. {
  94. op.add(displayText);
  95. }
  96. else if (equalOp.equals("-"))
  97. {
  98. op.subtract(displayText);
  99. }
  100. else if (equalOp.equals("*"))
  101. {
  102. op.multiply(displayText);
  103. }
  104. else if (equalOp.equals("/"))
  105. {
  106. op.divide(displayText);
  107. }
  108. textfield.setText("" + op.getTotalString());
  109. equalOp = e.getActionCommand();
  110. }
  111. }
  112. }
  113. }
  114. class NumberListener implements ActionListener {
  115. public void actionPerformed(ActionEvent event) {
  116. String digit = event.getActionCommand();
  117. if (number) {
  118. textfield.setText(digit);
  119. number = false;
  120. } else {
  121. textfield.setText(textfield.getText() + digit);
  122. }
  123. }
  124. }
  125. public class CalculatorOp {
  126. private int total;
  127. public CalculatorOp() {
  128. total = 0;
  129. }
  130. public String getTotalString() {
  131. return ""+total;
  132. }
  133. public void setTotal(String n) {
  134. total = convertToNumber(n);
  135. }
  136. public void add(String n) {
  137. total += convertToNumber(n);
  138. }
  139. public void subtract(String n) {
  140. total -= convertToNumber(n);
  141. }
  142. public void multiply(String n) {
  143. total *= convertToNumber(n);
  144. }
  145. public void divide(String n) {
  146. total /= convertToNumber(n);
  147. }
  148. private int convertToNumber(String n) {
  149. return Integer.parseInt(n);
  150. }
  151. }
  152. }
  153. class SwingCalculator {
  154. public static void main(String[] args) {
  155. JFrame frame = new Calculator();
  156. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  157. frame.setVisible(true);
  158. }
  159. }