我無法讓該程序正確響應用戶輸入。各種循環技術或者只運行一次塊或者無限次地運行塊,無論用戶輸入什麼(我也試過case
和while
)。下面是最新的方法我試過:爲什麼我的循環不工作?
work_summary = []
begin
# code that runs a sprint and adds results to the work_summary array
puts "Would you like to add a sprint, Y/N?"
sprint = gets.to_s
end until sprint == "N"
print work_summary, "\n"
紅寶石從來沒有反對我的任何的各種方法的語法,但它也永遠不會奏效。
謝謝,@UncleGene - 就是這樣。 –