gpt4 book ai didi

lisp - 在 lisp 中,如何使用 floor 函数返回的第二个值?

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

当我这样做时(4 楼 3)我得到了

1
1/3

但是我该如何使用那 1/3?

最佳答案

例如,您可以使用 multiple-value-bind 将其绑定(bind)到一个变量。

(multiple-value-bind (quot rem)
(floor 4 3)
(format t "The remainder is ~f~%" rem))

如果您对一个非主值感兴趣,另一种可能性是nth-value

(format t "The remainder is also ~f~%" (nth-value 1 (floor 4 3)))

有关引用,请参阅 Hyperspec .

关于lisp - 在 lisp 中,如何使用 floor 函数返回的第二个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6986880/

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