006.



#include <stdio.h>
main()
{
int i;
int hap = 0;
for( i = 1; i <= 10; i = i + 1 )
{
hap = hap + i;
}
printf( "1부터 10까지의 합: %d", hap );
}








'리버싱 > C언어 300제' 카테고리의 다른 글

리버싱 - c언어(001-005)  (0) 2018.12.13

+ Recent posts