Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

CodeRace/2015.5.15/김정빈

From ZeroWiki
Revision as of 10:18, 15 May 2015 by imported>vkdnjdldnjsw

일등

#include<stdio.h>
int sum(int i){
	if (i != 1)
	{
		return sum(i - 1) + i;
	}
	else
	{
		return 1;
	}

	
}
int main()
{
	int fin=0;
	int inp = 0;
	printf("입력 : ");
	scanf("%d",&inp);
	
	printf("%d", sum(inp));

}