格式化输出

发布于 2024-08-19 18:15:55 字数 145 浏览 10 评论 0原文

我需要以科学记数法输出数字,以便小数点前始终有一个“0”。

例如,对于数字 x = 134.87546,我需要生成输出 0.134875E03 NOT 1.348755E02

有人知道该怎么做吗?

提前致谢——设拉子。

I need to output numbers in scientific notation such that there is always a "0" before the decimal point.

e.g. For the number x = 134.87546, I need to produce the output
0.134875E03 NOT 1.348755E02

Does someone know how to do this?

Thanks in Advance --Shiraz.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

深海夜未眠 2024-08-26 18:15:55
int exp = (int)log10(input)+1;
double shifted = input / pow(10.0, exp);
printf("%fE%d", shifted, exp);
int exp = (int)log10(input)+1;
double shifted = input / pow(10.0, exp);
printf("%fE%d", shifted, exp);
屋檐 2024-08-26 18:15:55
int exponent = floor(log10(num)) + 1;

然后只需打印“0.”,即不带小数的数字,“E”,然后是指数。

int exponent = floor(log10(num)) + 1;

Then just print "0.", the number without decimals, "E", then the exponent.

往事风中埋 2024-08-26 18:15:55

您可以使用Boost Format 库进行调查这是一个通用的输出格式化库。

You may investigate using the Boost Format library which is a general output formatting library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文