Skip to content

Instantly share code, notes, and snippets.

@nommy
Created May 23, 2012 03:21
Show Gist options
  • Save nommy/2773089 to your computer and use it in GitHub Desktop.
Save nommy/2773089 to your computer and use it in GitHub Desktop.
AOJ Problem Volume0 0000 - QQ
for i in 1..9
for j in 1..9
product = i * j
puts i.to_s + "x" + j.to_s + "=" + product.to_s
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment