Skip to content

Instantly share code, notes, and snippets.

@milesrout
Created December 19, 2015 12:01
Show Gist options
  • Save milesrout/10049e77d191b807621c to your computer and use it in GitHub Desktop.
Save milesrout/10049e77d191b807621c to your computer and use it in GitHub Desktop.
for (int i = 1; i <= 12; i++)
for (int j = 1; j <= 12; j++)
std::cout << setw(4) << i*j;
std::cout << std::endl;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment