Type an expression to calculate. Supported: - Addition: + - Subtraction: - - Multiplication: * - Exponentiation: ^ (Doesn't support exponents that are less than 1) - Calculation order: ^, *, +- For example: 4^2+8*2-10 = 22 Steps: 1. 16+8*2-10 2. 16+16-10 3. 32-10 4. 22
I worked hard on it and I'll be very happy to get a like :) Update Log: V0.1 - Creation - Supports addition, subtraction and multiplication. - Calculates in the right order. V0.2 - Now supports exponentiation (Bigger than 0). V0.2.1 [Current] - Fixed a bug (Exponentiation process not working when not in the starting of the expression) V0.3 [Upcoming] - Will support brackets.