BOJ 4779 칸토어 집합

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 }}