文章
2
粉丝
493
获赞
访问
1.1k
使用c++的hex流
#include<iostream> #include<sstream> using namespace std; int main() { string s; while (cin>>s) { stringstream ss; ss << s; int t; ss >> hex >> t; cout << t << endl; ss.clear(); } return 0; }
登录后发布评论
暂无评论,来抢沙发