Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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.