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;
- Host: GitHub
- URL: https://github.com/hein-htetsan/calculator-with-java
- Owner: Hein-HtetSan
- Created: 2023-06-17T13:55:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-17T13:57:25.000Z (about 3 years ago)
- Last Synced: 2025-01-19T23:56:31.584Z (over 1 year ago)
- Topics: java, jframe, simple-project
- Language: Java
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!

```
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!