我试过以下:
std::cout << std::hex << 17.0625;
但它以十进制的形式抛弃它。我想看11.01(17.0625十六进制)。如何以十六进制打印一些浮点值?
请不要提供以下解决方案:
void outhexdigits(std::ostream& out, fp_t d, int max_chars=160)
{
while(d > 0. && max_chars)
{
while(d < 1. && max_chars){
out << '0';
--max_chars;
d*=16;
}
if (d>=1. && max_chars) {
int i = 0;
while (d>=1.)
++i, --d;
out << std::hex << i;
--max_chars;
}
}
}
有没有办法在STL / boost中以十六进制转储浮点数?
答案 0 :(得分:6)
试试cout << std::hexfloat << 1.0625;
这需要C ++ 11。
答案 1 :(得分:4)
其他人已经建议使用C ++ 11解决方案,但您的问题没有C ++ 11标记。这是一个ISO C99解决方案,使用ISO C99标准中的%a
和%la
格式说明符。
我想看11.01(17.0625十六进制)。
以下程序打印0X1.11P+4
。
#include <stdio.h>
int main() {
double x = 17.0625;
printf("17.0625 in hexadecimal is: %A\n", x);
}
以下示例说明如何以十六进制格式读取和写入浮点数。
#include <stdio.h>
int main() {
double x = 0.1;
char* str = "0X1.999999999999AP-4";
printf("0.1 in hexadecimal is: %A\n", x);
printf("Now reading %s\n", str);
/* in a production code I would check for errors */
sscanf(str, "%lA", &x); /* note: %lA is used! */
printf("It equals %g\n", x);
}
如果可移植性很重要或者您遇到了旧的编译器,我认为这是一种合理的方法。
答案 2 :(得分:3)
std::hexfloat
是一个格式操纵器,用于以十六进制表示形式打印浮点值。它自2011年标准以来就已存在。