BOJ 4779 칸토어 집합

Jmnote (토론 | 기여)님의 2023년 9월 12일 (화) 02:30 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

BOJ 4779 칸토어 집합


2 C++[ | ]

#include <bits/stdc++.h>
using namespace std;

string get(int n) {
    string str = "-";
    for(int i=0; i<n; i++) {
        string spaces(str.length(), ' ');
        str += spaces + str;
    }
    return str;
}

int main() {
    int N;
    while(cin >> N) {
        cout << get(N) << '\n';
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}