Last active
February 24, 2017 18:28
-
-
Save crmorford/c77f467b86257df5ef4ff6c5de91f212 to your computer and use it in GitHub Desktop.
mama homework
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
for (i=0; i<=userNum; i++) { | |
for (j=0; j<=i; j++) { | |
printf(" "); | |
} | |
printf("%d\n", i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment