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

发布于 2024-11-28 22:18:40 字数 81 浏览 1 评论 0原文

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

1
1/3

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

When I do (floor 4 3) I got

1
1/3

But how do I use that 1/3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囚你心 2024-12-05 22:18:40

例如,您可以使用multiple-value-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

You can for instance bind it to a variable using multiple-value-bind.

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

Another possibility, if you're only interested in one non-primary value, is nth-value.

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

For reference, see the Hyperspec.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文