如何在Scheme中获取整数的单个数字

时间:2011-08-15 02:43:41

标签: scheme

嗨,我是一名计划初学者,有一项需要确定一年的任务。但是我注意到没有使用(/ 1992 100)来获得像C一样的19。并且也没有%运算符来获取提醒。谢谢。

1 个答案:

答案 0 :(得分:5)

guile> (quotient 1992 100)
19
guile> (modulo 1992 100)
92

来自http://www.cs.cmu.edu/Groups/AI/html/r4rs/r4rs_8.html