Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 375 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 375 Bytes

cpp_calculator

Calculator project during C++ course at UCU

Current operators:

binary: + - / *
unary: + -

Current functions:

binary: min max pow
unary: sin cos

It supports nested expressions as well

Examples:

  • Input: pow(1 + sin(2 * 3), cos(min(1, 2 + 2 / 7)))
  • Output: 0.837735