• 2021-04-14
    【单选题】已知一个运算被定义为(define (firstCalc x) (* x x)),在其基础上进一步定义新运算secondCalc为【图片】,下列运算组合式书写正确的是_____。
    A. (define (secondCalc x y z)  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  z)))
    B. (define  secondCalc  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  z)))
    C. (define (secondCalc x y z)  (+  firstCalc  x  y  z))
    D. (define secondCalc x y z  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  z)))
    E. (define (secondCalc x y z)  (+  (firstCalc  x)  (firstCalc  x)  (firstCalc  x)))