Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
10 からカウントダウンし、メッセージを表示し、その後すぐに 100 メートルから 200 メートルまでカウントを開始し、100,000 メートルまでカウントするプログラムを作成する必要があります。最後の部分のやり方がわかりません。これは私がこれまでに持っているコードです。
10.downto(1) do|counter| puts counter sleep 1 end puts "Blast off!"
100 単位で指定する場合は、次のようにします。
100.step(100_000, 100) {|c| puts c; sleep(0.5)}