首页
Java
登录
6mi
u
盘
搜
搜 索
Java
sicp 1.3
sicp 1.3
xiaoxiao
2026-06-08
27
定义一个过程,返回3个数中较大的2个数之和。
(define (sum-max2 a b c) (cond ((and (< a b) (< a c)) (+ b c)) ((and (< b a) (< b c)) (+ a c)) ((and (< c a) (< c b)) (+ a b))))
转载请注明原文地址: https://www.6miu.com/read-5049791.html
Java
最新回复
(
0
)