Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 323 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 323 Bytes

描述

Translate the following expression into prefix form

将以下表达式转换为前缀形式

解答

(
    / (
        + 5 4 (- 2 (- 3 (+ 6 (/ 4 5))))
    ) (* 3 (- 6 2) (- 2 7))
)

-37/150