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

https://github.com/squidkid-deluxe/c-calculator

A simple C++ calculator
https://github.com/squidkid-deluxe/c-calculator

calculator cpp

Last synced: 2 months ago
JSON representation

A simple C++ calculator

Awesome Lists containing this project

README

          

# Calc.C

This is a very simple C++ script, only 57 lines without comments. It can do multiplication, division, addition, and subtraction.
To run the script, either use your favorite C++ compiler/runner or, to run from the terminal, follow these steps:
1. Compile the script by typing `make calc`.
2. Now run the script by typing `./calc`.
3. Follow the printed directions, and see the answer appear!

## Dependencies:
calc2.C
- iostream
- cstdlib
**NOTE:** *These are all standard libraries, and should require no installing.*