https://github.com/emmmatech/calculator
This is a calculator made in C++
https://github.com/emmmatech/calculator
Last synced: over 1 year ago
JSON representation
This is a calculator made in C++
- Host: GitHub
- URL: https://github.com/emmmatech/calculator
- Owner: EmmmaTech
- License: mit
- Created: 2021-01-15T20:17:37.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-05T18:38:00.000Z (over 5 years ago)
- Last Synced: 2025-02-01T12:08:23.736Z (over 1 year ago)
- Language: C++
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Calculator
This is just a random Calculator program I made all in C++ for the purpose of putting my new knowledge to good use. Below is how to run the program.
## Compiling this program
To compile this program, you need a compiler like gcc or clang. This has been untested with the Windows C++ compiler. You also need to install CMake, which the program uses to generate the build files.
Clone this GitHub repo, go into the folder for the GitHub repo, and type in ``mkdir build && cd build``. You can then run ``cmake ..``to configure and generate the build files, then run ``make`` to compile the actual program.
Once it is done, you can now run ``./Calculator`` and it should work! Enjoy!