C++编写的十进制转换成16进制代码

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
//Decimal to hexadecimal number
//programming by : Erfan Nasoori
//Date of send : 2009/1/11
 
#include <iostream.h>
 
void main()
{
 int x,y,i;
 int d,n=1;
 int * r;
 char h[16]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
 
 cout<<"Enter x : ";
 cin>>x;
 y=x;
 while(x >= 10)
 {
    x/=10;
   ++n;
 }
 r=new int[n];
 for(i=0 ; y >= 16 ; ++i)
 {
    r[i]=y%16;
   y /= 16;
 }
 r[i++]=y;
 
 cout<<"16 base = ";
 for(i=(n-1) ; i>=0 ; --i)
 {
    cout<<h[r[i]];
 }
cin.get();
}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:C++在windows下获取本地主机ipv4地址和ipv6地址

下一篇: linux C++连接数据库postgreSql