-->
当前位置:首页 > 题库

单选题:已知一个运算被定义为(define  (firstCalc  x)  (*  x  x)),在其基础上进一步定义新运算secon

Luz5年前 (2021-05-10)题库1497
已知一个运算被定义为(define  (firstCalc  x)  (*  x  x)),在其基础上进一步定义新运算secondCalc为x2+y2+z2,下列运算组合式书写正确的是_____。
@[C](2)

A. (define  secondCalc  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  z)));
B. (define (secondCalc x y z)  (+  firstCalc  x  y  z));
C. (define (secondCalc x y z)  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  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)))。



A. (define  secondCalc  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  z)));
B.(define (secondCalc x y z)  (+  firstCalc  x  y  z));
C.(define (secondCalc x y z)  (+  (firstCalc  x)  (firstCalc  y)  (firstCalc  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)))。


答案:C