* "-n" (n = number) gives you the opposite of the number. * Multiplications are "*". * Divisions are "/" (slashes). * Additions are "+" signs. * ...
* "-n" (n = number) gives you the opposite of the number. * Multiplications are "*". * Divisions are "/" (slashes). * Additions are "+" signs. * Substractions are "-" (minus) signs. * % signs are allowed as well. * You can put parenthesis "(" and ")", as much as you want. They are used to organize your calculations. * You can use Pi. * squ(2) = square root of 2. pw(2,2) = 2 to the power of 2 (outputs 4). pw(3,2) 3 to the power of 2 (outputs 9) * You cant use variables, sorry. Example Operations: 1. (2 + 2) * 4 + (10 / 5) >> Output 18 2. (2 + 2) - (-10) >> Output 14 3. (pw(3,2)) * 2 >> Output 18 _______________________________________ NEEDS USER EDITING. WILL FUNCTION OUT OF THE BOX