Skip to content

Instantly share code, notes, and snippets.

@RSquaredSoftware
Last active December 25, 2015 01:29
Show Gist options
  • Save RSquaredSoftware/6895656 to your computer and use it in GitHub Desktop.
Save RSquaredSoftware/6895656 to your computer and use it in GitHub Desktop.
#include <iostream>
int main () {
for(int i=1; i<10; i++) {
for(int j=1; j<i; j++) {
std::cout << j;
}
std::cout << std::endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment