[알고리즘] 백준 11816 - 8진수, 10진수, 16진수 (C++) [문제 링크] : https://www.acmicpc.net/problem/11816#include using namespace std;int main(){ string N; cin >> N; if(N.length() > 1){ if(N.substr(0, 2) == "0x"){ cout 알고리즘 2024.11.17