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

https://github.com/man2dev/all-in-one-calculator

A Calculator that does diffrent things
https://github.com/man2dev/all-in-one-calculator

calculator calculator-application cpp university university-assignment university-course university-project

Last synced: 4 months ago
JSON representation

A Calculator that does diffrent things

Awesome Lists containing this project

README

        

# An unusual calculator

Which does the fallowing:
1. basic mathematical functions.
2. checking if a number is a prime number or not.
3. sorting random numbers.
4. printing Pascal's triangle.
5. finding the fibonacci sequence.
6. finding the gcd(BMM) or lcm(kMM) of integers.
7. printing a diamond pattern.

## run compiled game:
1. clone my repo:
````
cd ~ && git clone [email protected]:Man2Dev/All-IN-ONE-Calculator.git
````
2. run
````
.All-IN-ONE-Calculator/calculator.out
````

## compile it yourself on Linux
dependency `g++`

### Fedora
````
sudo dnf install gcc-c++
````
1. clone my repo:
````
cd ~ && git clone [email protected]:Man2Dev/All-IN-ONE-Calculator.git
````
2. compile the `cpp` file name `tic_tac_toe.cpp`:
````
g++ ~/All-IN-ONE-Calculator/All\ IN\ ONE\ Calculator.cpp
````
3. run:
````
~/a.out
````