[BOJ/C++] 11005 진법 변환 2

mani·2023년 5월 30일
0

baekjoon_step

목록 보기
67/73

반대 방향으로 진법을 변환하는 문제

하나하나 차근하근하자~


#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int N, B;
	cin >> N >> B;

	string ans = "";

	while(N>0) {
		char now = N % B;

		if (now < 10) {
			ans += (char)(now + '0');
		}
		else {
			ans += (char)(now - 10 + 'A');
		}
		N /= B;
	}
	reverse(ans.begin(), ans.end());

	cout << ans;
	return 0;
}
profile
log

0개의 댓글