Skip to content

Instantly share code, notes, and snippets.

@hanjae-jea
Last active August 29, 2015 14:17
Show Gist options
  • Save hanjae-jea/0887199be44387f1978f to your computer and use it in GitHub Desktop.
Save hanjae-jea/0887199be44387f1978f to your computer and use it in GitHub Desktop.
한재한테 과제 부탁
#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");
}
#include <stdio.h>
int main(int argc, char* argv[])
{
printf("hello world!");
return 0;
}
@joonlim92
Copy link

사이트 치기어렵네

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment