본문 바로가기
백준

[8393] 합

by Jcoder 2018. 5. 14.


#include <stdio.h>
int main()
{
int i, n, sum=0;
scanf("%d", &n);
for(i=n; i>0; i--)
{
sum += i;
}
printf("%d", sum);
}


'백준' 카테고리의 다른 글

[11721] 열 개씩 끊어 출력하기  (0) 2018.05.14
[11720] 숫자의 합  (0) 2018.05.14
[1924] 2007년  (0) 2018.05.14
[2441] 별찍기 - 4  (0) 2018.05.14
[2440] 별찍기 - 3  (0) 2018.05.14