码迷,mamicode.com
首页 > 其他好文 > 详细

基础练习 十六进制转十进制

时间:2018-09-26 01:21:14      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:std   ios   nbsp   基础练习   include   col   ace   基础   cin   

 

题目链接

#include <iostream>
#include <string>
#include <cmath>
using namespace std;
long long Dec;
int main()
{
    string Hex;
    int HexLength;

    while(cin >> Hex)
    {
        HexLength = Hex.length();
        Dec = 0;
        for(int i = HexLength - 1; i >= 0; --i){
            if(Hex[i] >= 0 && Hex[i] <= 9)
                Dec += pow(16, HexLength - 1 - i) * (Hex[i] - 0);
            else if(Hex[i] >= A && Hex[i] <= F)
                Dec += pow(16, HexLength - 1 - i) * (Hex[i] - A + 10);
        }
        cout << Dec << endl;
    }

}

 

基础练习 十六进制转十进制

标签:std   ios   nbsp   基础练习   include   col   ace   基础   cin   

原文地址:https://www.cnblogs.com/XuYiting/p/9704376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!