알고리즘/BOJ

백준 15612번 Cube Bits

꾸준함. 2018. 8. 15. 11:17

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


문제를 요약하자면 10진법 숫자가 주어지면 3진법으로 바꾸라는 문제였습니다.

핵심은 0일 때 0을 출력해줘야한다는 점이였습니다!


#include <iostream>

using namespace std;

 

void printTernary(long long N)

{

        if (N == 0)

                 return;

        printTernary(N / 3);

        cout << N % 3;

}

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0); //cin 실행속도 향상

        int test_case;

        cin >> test_case;

 

        for (int t = 0; t < test_case; t++)

        {

                 long long N;

                 cin >> N;

 

                 if (N == 0)

                         cout << 0;

                 else

                         printTernary(N);

                 cout << "\n";

        }

        return 0;

}


개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

'알고리즘 > BOJ' 카테고리의 다른 글

백준 14210번 Kartomat  (0) 2018.08.19
백준 14209번 Bridž  (0) 2018.08.19
백준 8112번 0과 1 - 2  (0) 2018.08.14
백준 8111번 0과 1  (2) 2018.08.14
백준 11718번 그대로 출력하기  (0) 2018.08.13