Skip to content

AlphabetsAlphabets/Kalculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kalculator

A calculator made in C++ with operator precedence.

Limitations

  1. The following expressions with parenthesis don't work.
  • 1 + ((2^2)^2)
  • ((2^2)^2)
  1. Negatives. Such as - 1 + 2. The calculator will assume - as an Operand. This is due to the way things are set.
  2. Decimal exponents don't work either.