[프로그래머스/C++] N진수 게임(진법 변환)
앞서 풀어본 문제들과 유사하다. #include #include using namespace std; string convert_num(int num, int n){ char code[] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; string tmp = ""; while(num/n!=0){ tmp = code[num%n] + tmp; num = num/n; } tmp = code[num%n]+tmp; return tmp; } string solution(int n, int t, int m, int p) { string answer = ""; string tmp = ""; // 임시 배열 tmp에 t*m 정도의 숫자를 담는다...