Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rozek1997/math-interpreter

Math interpreter for RPN mathematical notation(revers polish notation) written in java
https://github.com/rozek1997/math-interpreter

interpreter java math-interpreter maven rpn-calculator-java

Last synced: 27 days ago
JSON representation

Math interpreter for RPN mathematical notation(revers polish notation) written in java

Awesome Lists containing this project

README

        

# Math_interpreter

Math interpreter for RPN mathematical notation (revers polish notation)  written in java.

Commands examples in console:
d = 4 6 + 2 * #20, d is 20
c #variable not defined
c = 4 1 - #3, c is 3
c = 4 - #error
c #3, c is 3
c = 24 #24 c is 24
e = 0 #0, e is 0
c = e 3 + d 2 * + 5 + c - #
c
d c e + +
215
addddd = 215

#-means comments in this interpreter and after comments predicted value of operation