Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Calculator/src/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
import javax.swing.JTextField;
import javax.swing.SwingUtilities;


/*
* Main Calculator UI class
*/
public class Calculator {
private static final float BTN_FONT_SIZE = 20f;
private static final String[][] BTN_LABELS = {
Expand Down
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Simple Calculator

This project is a simple calculator desktop application implemented using java.

>>> Features

* Addition
* Subtraction
* Multiplication
* Division

GUI is updated with better UI/UX

This is developed to learn implemnting GUI Applications

Update: added comments and refactor the code.