Created
April 21, 2013 00:31
-
-
Save Githerdone/5427975 to your computer and use it in GitHub Desktop.
This file contains 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
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