Last active
August 29, 2015 14:17
-
-
Save hanjae-jea/0887199be44387f1978f to your computer and use it in GitHub Desktop.
한재한테 과제 부탁
This file contains hidden or 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(int argc, char* argv[]) | |
{ | |
int sum = 0; | |
for( int i = 1 ; i <= 100 ; i ++ ){ | |
sum = sum + i; | |
} | |
printf("1 to 100 sum = %d\n"); | |
} |
This file contains hidden or 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(int argc, char* argv[]) | |
{ | |
printf("hello world!"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
저도 알려주세요~