Last active
June 3, 2017 16:54
-
-
Save 27Cobalter/78f3cdc0d3eef6bd54cade789e182b50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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