Skip to content

Instantly share code, notes, and snippets.

@ChrisLundquist
Forked from anonymous/gist:1299654
Created October 19, 2011 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisLundquist/1299663 to your computer and use it in GitHub Desktop.
Save ChrisLundquist/1299663 to your computer and use it in GitHub Desktop.
#include <stdio>
int main()
{
for(int y = 1; y <= 50; y++){
for(int x = 1; x <= 3; x++){
std::cout << y*x << ","
}
std::cout << std::endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment