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

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

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)