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

https://github.com/yuhexiong/calculator-cpp


https://github.com/yuhexiong/calculator-cpp

cpp

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Calculator

Simple calculator, supports basic addition, subtraction, multiplication, and division. Multiplication and division take precedence over addition and subtraction.

Does not support parentheses functionality.

## Overview

- Language: C++
- Compiler: G++ v13.1.0

## Build

```bash

g++ -std=c++11 calculator.cpp -o calculator

```

## Run

```bash

./calculator

```