def hoge(n)
unless n == 3
ret = "hello"
end
if n == 5
ret = "world"
end
ret
end
str = ''
str.concat hoge(4)
str.concat hoge(5)
puts str
実行結果
helloworld
プログラムの実行結果をhellohelloworld
としたいのですが、どのようにすればよろしいでしょうか。
なぜこうならないのでしょうか。
コードは(修正時の) "<code>" または "<コード>" となっているボタンを押して、その中に書いてください。かなり読みづらいです。