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
- Host: GitHub
- URL: https://github.com/man2dev/all-in-one-calculator
- Owner: Man2Dev
- License: gpl-3.0
- Created: 2023-12-24T13:41:20.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-27T12:18:35.000Z (over 1 year ago)
- Last Synced: 2025-01-12T12:44:48.653Z (6 months ago)
- Topics: calculator, calculator-application, cpp, university, university-assignment, university-course, university-project
- Language: C++
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
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
````