📌  相关文章
📜  将十六进制数转换为十进制 c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:50.105000             🧑  作者: Mango

代码示例1
#include 
#include 
using namespace std;
int main()
{
    int x;
    cin >>hex >> x;
    cout << x << endl;
    return 0;
}