16进制转10

Posted joker99

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16进制转10相关的知识,希望对你有一定的参考价值。

注意高位低位次序即可

#include<iostream>
#include<string>
#include<cmath>
using namespace std;
long long fun(char c,int n){
    long long  temp=0;
    int i;
    switch(c)
    {
        case F: temp=15; break;
        case E: temp=14; break;
        case D: temp=13;break;
        case C: temp=12;break;
        case B: temp=11;break;
        case A: temp =10;break;
        case 9:temp =9;break;
        case 8:temp =8;break;
        case 7:temp =7;break;
        case 6:temp =6;break;
        case 5:temp =5;break;
        case 4:temp =4;break;
        case 3:temp =3;break;
        case 2:temp =2;break;
        case 1:temp =1;break;
        case 0:temp =0;break;
    }
    for(i=0;i<n;i++){
        temp=temp*16;    
    }
    return temp;
}
int main(){
    string a;
    int n,i,j;
    cin>>a;
    long long num=0;
    for(i=a.length()-1,j=0;i>=0;i--,j++){
        num=num+fun(a[i],j);
    }
    cout<<num<<endl;
}

以上是关于16进制转10的主要内容,如果未能解决你的问题,请参考以下文章

c语言16进制转换为10进制数的函数是啥?

求一个10进制转十六进制的vb代码,要支持非常大的数的(30位)

关于android 的10进制转16进制高位在前低位在后,不足位数补0处理方法

关于android 的10进制转16进制高位在前低位在后,不足位数补0处理方法

关于android 的10进制转16进制高位在前低位在后,不足位数补0处理方法

Delphi - 10进制16进制相互转换