An open API service indexing awesome lists of open source software.

https://github.com/hein-htetsan/calculator-with-java

Java project Calculator! Just practicing the JFrame with its components;
https://github.com/hein-htetsan/calculator-with-java

java jframe simple-project

Last synced: 12 months ago
JSON representation

Java project Calculator! Just practicing the JFrame with its components;

Awesome Lists containing this project

README

          

## Calculator Project with Java

After taking java class for 4 days! There is no use of OOP, and still learning it to apply in lot of projects!

![snapshot](Calculator.jpg)

```
import javax.swing.*;
import java.awt.event.*;

// objects
JFrame jf = new JFrame();
JButton btn = new JButton(String);
JTextField input = new JTextField();
JTextArea text_area = new JTextArea();
```
:) I think I got some knowledge ever than before from this project!