gpt4 book ai didi

scheme - 数字的数字列表

转载 作者:太空宇宙 更新时间:2023-11-03 18:59:13 26 4
gpt4 key购买 nike

<分区>

我正在尝试编写一个接受数字并返回数字数字列表的函数。例如:

(list-num 648)
;=> (6 4 8)

我写了一些代码,但它返回(8 4 6),我不能使用reverse。到目前为止我的代码:

(define (list-num n)
(if (not (equal? (quotient n 10) 0))
(cons (modulo n 10) (list-num(quotient n 10)))
(cons (modulo n 10) '())))

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com