我需要定义“字符串正确”的程序
(define string-right
(lambda (x)
(substring x (quotient (string-length x) 2) (string-length x))))
不适用于奇数字符串长度,但程序
(define string-right
(lambda (x)
(substring x (+ (quotient (string-length x) 2) 1)(string-length x))))
不适用于偶数字符串长度。请帮忙。沮丧的。