Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
27035 肖静 十六进制转十进制 C++ Accepted 1 MS 748 KB 189 2022-05-28 14:05:20

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; }