文章
81
粉丝
2
获赞
424
访问
7.9k
#include <iostream> using namespace std; int main() { long long x; while (cin >> hex >> x) cout << dec << x << endl; }
#include <cstdio> int main(){ unsigned long long x; while(scanf("%llx",&x)!=EOF){ printf("%llu\n",x); } return 0; }
登录后发布评论
暂无评论,来抢沙发