当我这样做时(4楼3楼)我得到了
1
1/3
但我如何使用1/3?
答案 0 :(得分:18)
您可以使用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。