https://github.com/timii/calculatorgui
University Project for "Fortgeschrittene Programmierkonzepte" @ Worms University of Applied Science
https://github.com/timii/calculatorgui
Last synced: 4 days ago
JSON representation
University Project for "Fortgeschrittene Programmierkonzepte" @ Worms University of Applied Science
- Host: GitHub
- URL: https://github.com/timii/calculatorgui
- Owner: timii
- License: mit
- Created: 2020-11-05T10:35:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-05T11:14:13.000Z (over 5 years ago)
- Last Synced: 2025-10-26T23:42:31.939Z (9 months ago)
- Language: Java
- Size: 88.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CalculatorGUI
University Project for "Fortgeschrittene Programmierkonzepte" @ Worms University of Applied Science
### Table of Contents
- [Description](#description)
- [How To Use](#how-to-use)
### Description
CalculatorGUI is a university project in which we had a calcualtor for the command line and had to build a gui (graphical user interface) for it. The calculator is written in Java and we used JavaFX to build the gui.
Mathematical functions available in the calculator:
* Addition (+)
* Subtraction (-)
* Division (/)
* Multiplication (*)
* Exponentiation (^)
* Modulo (%)
* Square root (sqrt())
* Sine (sin())
* Cosine (cos())
* Tangent (tan())
* Factorial (fac())
* Logarithm base 10 (log())
* Logarithm base e (ln())
* Pi (pi)
* Euler's number (e)
### How To Use
To test the app yourself you can clone the project and build it with [IntelliJ IDEA](https://www.jetbrains.com/de-de/idea/).
[Back To The Top](#calculatorgui)