Last active
August 29, 2015 14:20
-
-
Save nesffer/700e9dec760db95cec07 to your computer and use it in GitHub Desktop.
2015-04-27 No.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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