C++中 如何将整数转换成十六进制的字符串
给出一个实现的函数,要求参数只有int(转换的数)以及bits(十六进制的位数),如果十六进制不足,则补充为0;如25转换成0019...
给出一个实现的函数,要求参数只有int(转换的数)以及bits(十六进制的位数),如果十六进制不足,则补充为0;如 25 转换成 001 9
展开
4个回答
展开全部
用字符串流就可以。
#include <sstream>
#include <string>
std::string dec2hex(int i, int width)
{
std::stringstream ioss; //定义字符串流
std::string s_temp; //存放转化后字符
ioss << std::hex << i; //以十六制形式输出
ioss >> s_temp;
std::string s(width - s_temp.size(), '0'); //补0
s += s_temp; //合并
return s;
}
如按下面调用
std::cout << dec2hex(25, 4);
输出0019
#include <sstream>
#include <string>
std::string dec2hex(int i, int width)
{
std::stringstream ioss; //定义字符串流
std::string s_temp; //存放转化后字符
ioss << std::hex << i; //以十六制形式输出
ioss >> s_temp;
std::string s(width - s_temp.size(), '0'); //补0
s += s_temp; //合并
return s;
}
如按下面调用
std::cout << dec2hex(25, 4);
输出0019
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没说清楚是控制台输出还是返回字符串啊。
我就写输出到控制台吧。
int outputDec2hex(int dec, int bits)
{
char outputFormat[50] = "";
if(0 >= bits)
{
return (-1);
}
sprintf(outputFormat,"%%0%dx\n", bits);
printf(outputFormat,dec);
return 0;
}
我就写输出到控制台吧。
int outputDec2hex(int dec, int bits)
{
char outputFormat[50] = "";
if(0 >= bits)
{
return (-1);
}
sprintf(outputFormat,"%%0%dx\n", bits);
printf(outputFormat,dec);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
itoa,最后一个参数写16
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询