Skip to content

Instantly share code, notes, and snippets.

@27Cobalter
Last active June 3, 2017 16:54
Show Gist options
  • Save 27Cobalter/78f3cdc0d3eef6bd54cade789e182b50 to your computer and use it in GitHub Desktop.
Save 27Cobalter/78f3cdc0d3eef6bd54cade789e182b50 to your computer and use it in GitHub Desktop.
puts "値を入力してください"
val = gets.to_i
for num in 1..val do
if num%15 == 0 then
puts "FizzBuzz"
elsif num%5 == 0 then
puts "Buzz"
elsif num%3 == 0 then
puts "Fizz"
else
puts num
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment