已知一个运算被定义为(define (firstCalc x) (* x x))...ondCalc表达的运算功能为_____
举一反三
- 【单选题】已知一个运算被定义为(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)))
- 已知一个运算被定义为(define (firstCalc x) (* x x)),在其基础上进一步定义新运算secondCalc为,下列运算组合式书写正确的是_____。 eb83511cce0ce4612edc7c97bca56c22.PNG
- 已知一个运算被定义为(define(firstCalcx)(*xx)),在其基础上进一步定义新运算为(define(secondCalcx)(firstCalc(firstCalc(firstCalcx)))),问secondCalc表达的运算功能为_____
- 已知一个新运算被定义为(define (newCalc x y) (* (+ x 1) (* y 2))),问newCalc可以完成的计算功能为_____
- 请⽤define运算,定义⼀个过程实现计算,其正确定义的过程为( )。 A: (define cube a (* a a a)) B: (define (cube x) (* x x x)) C: (define (cube a (* a a a))) D: (define (cube a) (* x x x)))