genzou #6538(2008/06/19 10:19 GMT) [ Groovy ] Rating0/0=0.00
1 2 3 4 5 6 7 8 9
def reverseString( text ){ def list = [] ((text.size()-1)..0).each{ list << text[it] } list.join("") } println reverseString("こんにちわ")
Rating0/0=0.00-0+
[ reply ]
genzou
#6538()
[
Groovy
]
Rating0/0=0.00
def reverseString( text ){ def list = [] ((text.size()-1)..0).each{ list << text[it] } list.join("") } println reverseString("こんにちわ")Rating0/0=0.00-0+
[ reply ]