格式化输出
我需要以科学记数法输出数字,以便小数点前始终有一个“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
然后只需打印“0.”,即不带小数的数字,“E”,然后是指数。
Then just print "0.", the number without decimals, "E", then the exponent.
您可以使用Boost Format 库进行调查这是一个通用的输出格式化库。
You may investigate using the Boost Format library which is a general output formatting library.