-Math compiler and interpreter program written in Java.
-This program can do 4 operations : summation, subtraction, multiplication and divisian.
-It has operator precedence("*" and "/" > "+" and "-") and does operations in order with parantheses.
-You can also define variables and assign numbers to them, which can be used later.
-The program checks input validity and division by 0.
-Regex is used in this program to parse and store variables, expressions.
oguzhangoller/Math-Compiler-and-Interpreter-in-Java
This program can do 4 basic math operations("+","-","*","/") on expressions and variables. It has operator and paranthesis precedence.
Java