Run id: 126447
Main.cc: In function 'void arbitrary_radix(int, int)':
Main.cc:10:2: error: 'vector' was not declared in this scope
vector result;
^
Main.cc:10:9: error: expected primary-expression before 'char'
vector result;
^
Main.cc:14:4: error: 'result' was not declared in this scope
result.push_back(transform_char(temp));
^
Main.cc:19:3: error: 'result' was not declared in this scope
result.push_back(transform_char(remainder));
^
Main.cc:22:10: error: 'result' was not declared in this scope
reverse(result.begin(), result.end());
^
Main.cc:22:38: error: 'reverse' was not declared in this scope
reverse(result.begin(), result.end());
^
Main.cc:24:3: error: 'cout' was not declared in this scope
cout << result[i];
^
Main.cc: In function 'int main()':
Main.cc:31:2: error: 'cin' was not declared in this scope
cin >> n >> radix;
^