Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 347df02

Browse files
Update README.md
1 parent e32f328 commit 347df02

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

‎README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,19 @@ Infix expression: (1+2) * 3
2626
Prefix expression: * + 1 2 3
2727
Value: 9
2828
```
29+
30+
Sometimes there are multiple sub-expressions:
31+
```
32+
Infix expression: ((1 + 2) *3)-4
33+
Prefix expression: - * + 1 2 3 4
34+
value: 5
35+
```
36+
37+
Sub-expressions can be nested arbitrarily deeply:
38+
```
39+
Infix expression: 6 + (( 4 - (2 + 3 ) ) * 8 )
40+
Prefix expression: + 6 * - 4 + 2 3 8
41+
value: -2
42+
```
43+
44+

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /