https://www.acmicpc.net/problem/1212 1212번: 8진수 2진수 첫째 줄에 8진수가 주어진다. 주어지는 수의 길이는 333,334을 넘지 않는다. www.acmicpc.net #include #include #include using namespace std; int main() { string eight; cin >> eight;//8진수를 입력받는다 queue two;//2진수를 담을 queue if (eight == "0")//입력받은 8진수가 0이면 2진수도 0 cout