用于评估算术表达式的Scheme程序

时间:2016-10-18 14:45:41

标签: functional-programming scheme racket evaluation arithmetic-expressions

我想评估一个方案运算符中的算术表达式可以是div,mul,sub,对应于/,*, - ,+

(arith_eval exp)

Above exp can be a scheme number or (operator expr_1 expr_2)

Input : (arith_eval '(add (sub 8 2) 3))
Expected O/p : 9

我对计划很新,我不知道如何开始请帮助我:(

1 个答案:

答案 0 :(得分:0)