gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 23:12:26 25 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/8773133/

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