알고리즘 모음(C++)

백준 5341 - Pyramids(C++) 본문

백준

백준 5341 - Pyramids(C++)

공대생의 잡다한 사전 2023. 10. 8. 20:46

문제 링크입니다. https://www.acmicpc.net/problem/5341

 

5341번: Pyramids

The input will be a sequence of integers, one per line. The end of input will be signaled by the integer 0, and does not represent the base of a pyramid. All integers, other than the last (zero), are positive.

www.acmicpc.net

 

 

자세한 것은 코드를 참고해주세요.

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <vector>

using namespace std;

int N;

int main() {
    cin.tie(0);
    cout.tie(0);
    while(1){
        cin >> N;
        if(N == 0) break;
        int sum = 0;
        for(int i = 1; i <= N; i++) sum += i;
        cout << sum << "\n";
    }
    return 0;
}

 

 

질문 및 조언은 댓글을 남겨주세요.

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

백준 13903 - 출근(C++)  (0) 2023.10.10
백준 25418 - 정수 a를 k로 만들기(C++)  (0) 2023.10.08
백준 17025 - Icy Perimeter(C++)  (1) 2023.10.03
백준 27211 - 도넛 행성(C++)  (1) 2023.10.03
백준 16988 - Baaaaaaaaaduk2 (Easy)(C++)  (1) 2023.10.02