You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sicp-all-tasks/sicp/1_002e2

47 lines
442 B

Exercise 1.2: Translate the following expression
into prefix form:
5
+
4
+
(
2
(
3
(
6
+
4
5
)
)
)
3
(
6
2
)
(
2
7
)
.