gpt4 book ai didi

C++如何使用printf获取 "one digit exponent"

转载 作者:太空宇宙 更新时间:2023-11-04 00:01:40 27 4
gpt4 key购买 nike

有没有办法用科学记数法打印少于 3 位的指数部分?6.1 格式不影响指数,只影响数字部分:

var=1.23e-9;
printf ("%e\n", var);
printf ("%6.1e\n", var);

给予

1.230000e-009
1.2e-009

我也在 wxWidgets 中尝试过格式化字符串,但行为是一样的。

m_var->SetLabel(wxString::Format(wxT("%6.1e"),var));

我想要的是 1.2e-9

最佳答案

根据 Wikipedia :

The exponent always contains at least two digits; if the value is zero, the exponent is 00. In Windows, the exponent contains three digits by default, e.g. 1.5e002, but this can be altered by Microsoft-specific _set_output_format function.

_set_output_format

关于C++如何使用printf获取 "one digit exponent",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40679715/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com