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

16进制的转换

时间:2017-01-10 20:57:39      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:nbsp   std   log   put   printf   class   namespace   print   name   

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

//using namespace std;

char *get16String(long num)
{
    int i=0;
    char* buffer=(char*)malloc(11);
    char* temp;
    
    buffer[0]=0;
    buffer[1]=x;
    buffer[10]=\0;
    temp=buffer+2;
    
    for(i=0;i<8;i++)
    {
        temp[i]=(char)(num<<4*i>>28);
        printf("### %d ###\t",temp[i]);
        temp[i]=temp[i]>=0?temp[i]:temp[i]+16;
        printf("### %d ###\t",temp[i]);
        temp[i]=temp[i]<10?temp[i]+48:temp[i]+55;
        printf("### %d ###\n",temp[i]);
    }
    return buffer;
}


int main()
{
    char *p=NULL;
    int num=0;
    printf("input num:");
    scanf("%d",&num);
    
    p=get16String(num);
    printf("%s\n",p);
    
    return 0;
}

 

16进制的转换

标签:nbsp   std   log   put   printf   class   namespace   print   name   

原文地址:http://www.cnblogs.com/zoudajia/p/6270541.html

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