Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/macktb/smart-calculator

Smart Calculator using generic programming in Java with conversion of numbers from infix notation to postfix notation.
https://github.com/macktb/smart-calculator

Last synced: 5 days ago
JSON representation

Smart Calculator using generic programming in Java with conversion of numbers from infix notation to postfix notation.

Awesome Lists containing this project

README

        

# Smart Calculator

We realise that project using _**generic programming**_ in Java.
In order to compute, we convert the numbers from infix notation to postfix notation.

The reason to convert infix to postfix expression is that we can compute
the answer of postfix expression easier by using a stack since we can have
an expresion like this :
- 3 + 8 * ((4 + 3) * 2 + 1) - 6 / (2 + 1)
- a\*2+b\*3+c*(2+3).