/C-Sharp-Calculator

A simple calculator made in C#

Primary LanguageC#

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.