Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 284 Bytes

File metadata and controls

5 lines (4 loc) · 284 Bytes

Simple Arithmatic Calculator

This is a simple command line math calculator. It can handle +-*/^ and ().

Algorithm

The way this program works is to take in an equation and convert it to Reverse Polish Notation. It will then calculate the results using the reformatted equation.