Skip to content

Instantly share code, notes, and snippets.

@mendsley
Created February 26, 2013 06:03
Show Gist options
  • Save mendsley/5036242 to your computer and use it in GitHub Desktop.
Save mendsley/5036242 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <iomanip>
int main() {
for (int ii = 0; ii < 20; ++ii) {
std::cout << std::setw(4) << ii << std::setw(4) << 2*ii << std::endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment