RDCalc is a simple, recursive descent-based CLI calculator. It analyzes mathematical expression using grammars and calculates the result.
You can run RDCalc with (also see Building from source)
make run <math expression>$Supported symbols: (, ), *, /, +, - and numbers. You have to put $ in the end of expression.
Use make rund instead to run in debug mode.
Download this repository with
git clone https://github.com/nerett/rd_calculator.gitBuild it with
cd rd_calculator/
makeTo totally rebuild the project run
make clean
makeThis section isn't done yet.
This programm was written during MIPT Ded's cource.