题解 | #进制转换#
进制转换
https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6
#include <iostream> #include <string> using namespace std; int main() { string str; cin>>str; cout<<stoi(str,0,16)<<endl; } // 64 位输出请用 printf("%lld")
接收字符串,在输出时用stoi转为16进制。