Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
55019 万正钰 十六进制转十进制 C++ Accepted 2 MS 268 KB 162 2023-07-26 09:01:37

Tests(1/1):


Code:

#include <iostream> #include <cstdio> #include <math.h> using namespace std; int main() { int n; scanf("%x",&n); printf("%d\n",n); return 0; }