👏ruby ループ処理2022/11/07に公開Rubytech 繰り返し回数を受け取る greeting = 'Hello world' count = gets.to_i count.times do puts greeting end countで入力された回数greetingを出力します ループ処理でgetsを使うと、標準入力から複数のデータを受け取ることができます。 複数のデータを受け取る count = gets.to_i count.times do name = gets.chomp puts "Hello #{name}" end Discussion
Discussion