[SWEA-D1] C++ 2025. N줄덧셈

민지·2023년 5월 20일
0

SWEA

목록 보기
13/23
post-custom-banner

1부터 주어진 숫자만큼 모두 더한 값을 출력하시오.

단, 주어질 숫자는 10000을 넘지 않는다.

[예제]

주어진 숫자가 10 일 경우 출력해야 할 정답은,

1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 = 55

#include<iostream>
using namespace std;

int main(int argc, char** argv)
{
	int n, sum=0;
    cin >> n;

	for(int i=0; i<=n; i++)
	{
        sum += i;
	}
    cout << sum;
    
	return 0;
}
profile
개발일지

0개의 댓글