https://www.acmicpc.net/problem/11005 11005번 진법 변환 2 10진법 수를 B진법으로 바꿔서 출력하는 문제이다. #include #include using namespace std;int main(){ int N, B; cin >> N >> B; vector v; int a = N % B; do { N /= B; char c; if (a > 9) { c = 'A' + (a - 10); } else { c = a + '0'; } v.push_back(c); a = N % B; } while (N >= B || a != 0); for (auto i = v.rbegin(); i != v.rend(); ++i) { cout 10진법으로 들어온 수를 B..