题解 | #进制转换#
进制转换
https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6
// #include <iostream> // using namespace std; // int main() { // int a, b; // while (cin >> a >> b) { // 注意 while 处理多个 case // cout << a + b << endl; // } // } // // 64 位输出请用 printf("%lld") #include <bits/stdc++.h> #include <string> using namespace std; int main(){ string str; while (cin >> str) { cout << stoi(str, 0, 16) << endl; } return 0; }