kacchi #1303(2007/07/21 15:05 GMT) [ Scheme ] Rating1/1=1.00
再帰で。 (reverse-print '(1 2 3 4 5)) 5 4 3 2 1
1 2 3 4
(define (reverse-print ls) (unless (null? ls) (reverse-print (cdr ls)) (print (car ls))))
Rating1/1=1.00-0+
[ reply ]
kacchi
#1303()
[
Scheme
]
Rating1/1=1.00
Rating1/1=1.00-0+
[ reply ]