Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kuerbiskuchen02/javafxcalculator
Simple calculator built with Java and JavaFX.
https://github.com/kuerbiskuchen02/javafxcalculator
calculator java javafx
Last synced: 27 days ago
JSON representation
Simple calculator built with Java and JavaFX.
- Host: GitHub
- URL: https://github.com/kuerbiskuchen02/javafxcalculator
- Owner: KuerbisKuchen02
- Created: 2024-10-29T23:08:54.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-06T23:10:28.000Z (2 months ago)
- Last Synced: 2024-11-06T23:29:29.307Z (2 months ago)
- Topics: calculator, java, javafx
- Language: Java
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaFX Calculator
> Simple calculator built with Java and JavaFX.
It works by:
- **Parsing Expressions:** Uses an LR(1) grammar and the shunting yard algorithm to convert mathematical expressions into Reverse Polish notation (RPN).
- **Calculating Results:** Evaluates the RPN expression with a stack-based approach to get the final result.
- **User Interface:** Features a straightforward JavaFX interface for entering expressions and viewing results.This project demonstrates basic parsing and calculation techniques for handling arithmetic expressions.