如何在Scheme中计算指数?
pow
、^
、**
不起作用,Scheme 似乎是一个太常见的词,无法有效地用 google 搜索它。
pow
, ^
, **
doesn't work, and Scheme seems to be too common a word to be able to effectively google it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 R5RS 标准程序:
搜索“方案参考”会出现此文档。
From R5RS Standard Pocedures:
Searching for "scheme reference" turns up this document.
答案是
expt
,我正在输入,因为 StackOverflow 不喜欢太短的答案。The answer is
expt
and I am typing because StackOverflow doesn't like too short answers.(expt base power)
就是你想要的。因此(expt 2 3)
表示 2^3 并产生 8。(expt base power)
is what you want. So(expt 2 3)
expresses 2^3 and yields 8.