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

将十进制转化为十六进制

时间:2014-08-02 23:21:04      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   2014   ar   

#include<iostream>
#include<string>
using namespace std;

int main()
{
    const string hexdigits="0123456789ABCDEF";
    cout<<"Enter a series of numbers between 0 and 15"<<" separates by spaces ,Hit ENTR when finished:"<<endl;
    string result;
    string::size_type n;
    while(cin>>n)
    {
        if(n<hexdigits.size())
            result+=hexdigits[n];
        cout<<"Yours hex number is:"<<result<<endl;
    }
    return 0;
}

运行结果:

bubuko.com,布布扣

将十进制转化为十六进制,布布扣,bubuko.com

将十进制转化为十六进制

标签:style   blog   http   color   os   io   2014   ar   

原文地址:http://www.cnblogs.com/wuchanming/p/3887592.html

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