原版题目: Exercise 1.3: Define a procedure that takes three numbers as arguments and returns the sum of the squares of the two larger numbers. 中文翻译书籍: 翻译错误,题目正确为: 请定义一个过程,它以三个数为参数,返回其中较大的两个数平方之和. 网上的参考答案为: (define (square x) (* x x)) (define (sumsquares…