728x90
#include <iostream>
using namespace std;
int main() {
int n, sum=0;
cin >> n;
for (int i = 1;i <= n;i++) {
sum += i;
}
cout << sum;
return 0;
}
'BEAKJOON' 카테고리의 다른 글
백준(15552번 빠른 A+B)풀이 C++ (0) | 2020.12.02 |
---|---|
백준(15552번 빠른 A+B)풀이 C++ (0) | 2020.12.02 |
백준(10950번 A+B - 3)풀이 C++ (0) | 2020.12.02 |
백준(2739번 구구단)풀이 C++ (0) | 2020.12.02 |
백준(2884번 알람 시계)풀이 C++ (0) | 2020.12.02 |