Another calculator project, only this time made entirely on AndroidStudio.
Like the TomCat servlet calculator, this too isn't yet finished.
Although it is very similiar to the TomCat one, in this calculator the elv() method is available and functional.
Below a list of all currently available operations:
sum()- Adds two operands.
sub()- Subtracts two operands.
mul()- Multiplies two operands.
div()- Divides two operands.
- An exception is thrown if a division by zero is performed.
factorial()- Calculates the factorial of a specified value.
- An exception is thrown if said value is < 0.
mod()- Calculates the module of a value.
- [] Add scientific calculator functions.
- [] Add trigonometric functions.
- [] Add binary functions.