Skip to content

A simple math calculator class written in C# by Mark Cay.

License

Notifications You must be signed in to change notification settings

MarkCay/math-calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Math Calculator class made in C#

  • follows the order of operations
  • can calculate long mathematical expressions
  • limited only to the following operations: addition, subtraction, multiplication, division, remainder, and exponentiation
  • cannot process big number computations (maximum of Double.MaxValue only)
  • rejects math expressions with brackets and parentheses