Skip to content

Instantly share code, notes, and snippets.

@nesffer
Last active August 29, 2015 14:20
Show Gist options
  • Save nesffer/700e9dec760db95cec07 to your computer and use it in GitHub Desktop.
Save nesffer/700e9dec760db95cec07 to your computer and use it in GitHub Desktop.
2015-04-27 No.1
#include <stdio.h>
int main() {
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= 9; j++) {
printf("%d", j);
}
printf("\n");
}
return 0;
}
/*
123456789
123456789
123456789
123456789
123456789
123456789
123456789
123456789
123456789
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment