Skip to content

Instantly share code, notes, and snippets.

@mrandyclark
Created January 11, 2011 21:34
Show Gist options
  • Save mrandyclark/775197 to your computer and use it in GitHub Desktop.
Save mrandyclark/775197 to your computer and use it in GitHub Desktop.
puts 'Hello. What year would you like to begin with?'
@alpha_year = gets.chomp
puts 'What year would you like to end with?'
@omega_year = gets.chomp
while(@alpha_year <= @omega_year)
puts @alpha_year
puts @alpha_year%4
if(@alpha_year%4 == 0)
puts @alpha_year
end
@alpha_year++
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment