Skip to content

Instantly share code, notes, and snippets.

@jfarmer
Forked from Githerdone/gist:5427975
Created April 21, 2013 00:32
Show Gist options
  • Save jfarmer/5427979 to your computer and use it in GitHub Desktop.
Save jfarmer/5427979 to your computer and use it in GitHub Desktop.
def times_table(n)
(1..n).each do |row_num|
line = ""
(1..n).each{ |col_num| line += "#{row_num * col_num}\t"}
puts line
end
end
times_table(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment