독도갈매기의 개발 블로그
[알고리즘] 백준 합 8393번 본문
#include <bits/stdc++.h>
using namespace std;
int main()
{
int tmp;
int result = 0;
cin >> tmp;
for (int i = 0; i < tmp; i++) {
result += i + 1;
}
cout << result;
}
result
변수를 만들어 1부터 tmp까지 계속 추가되는 값을 +=
으로 쌓아 출력을 해주면 됩니다.
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 별 찍기 -2- 2439번 (0) | 2020.09.22 |
---|---|
[알고리즘] 백준 별 찍기 -1- 2438번 (0) | 2020.09.21 |
[알고리즘] 백준 구구단 2739번 (0) | 2020.09.19 |
[알고리즘] 백준 시험성적 9498번 (0) | 2020.09.18 |
[알고리즘] 백준 윤년 2753번 (0) | 2020.09.16 |
Comments