We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88eacdf commit 42c34a3Copy full SHA for 42c34a3
1 file changed
README.md
@@ -1,2 +1,21 @@
1
# Math-Expression-Parser
2
A small console program to parse string math expressions
3
+
4
+The nth-root formula is n%num
5
+n is for the nth root
6
+% is the substitude for the root symbol
7
+num is the number to be rooted
8
9
+Everything else
10
+Parenthesis - ()
11
+Nth-Root - %
12
+Exponentiation - ^
13
+Multiplication - *
14
+Division - /
15
+Addition - +
16
+Substraction - -
17
18
+W visible calculation prints the formula multiple times as it is being calculated and changed
19
+WO visible calculation just shows the answer
20
21
+Digits are supported, use a full stop - .
0 commit comments