普通数字如何转换成科学记数法? [英] How about ordinary Numbers Convert into the form of scientific notation?

查看:105
本文介绍了普通数字如何转换成科学记数法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

普通数字怎么样转换成科学记数法的形式?谢谢你的帮助!

解决方案

一般用E来实现 - 'E'和'e'自定义说明符 [ ^ ]



更多信息 -

https://social.msdn.microsoft.com/论坛/ vstudio / EN-US / f14af7c1-ddc6-424a-b50b-a797f7367137 /如何对转换-A-字符串到一个科学的表示法,在-C代码?论坛= csharpgeneral [ ^ ]

将科学记数法转换为c#中的实数 [ ^ ]


尝试:

  double  d =  12345  6789 ; 
Console.WriteLine( {0:e},d);


How about ordinary Numbers Convert into the form of scientific notation?Thank you for your help!

解决方案

It is generally achieved using an E - The 'E' and 'e' custom specifiers[^]

Some more info -
https://social.msdn.microsoft.com/Forums/vstudio/en-US/f14af7c1-ddc6-424a-b50b-a797f7367137/how-to-convert-a-string-to-an-scientific-notation-in-c-code?forum=csharpgeneral[^]
Convert scientific notation number to real number in c#[^]


Try:

double d = 12345.6789;
Console.WriteLine("{0:e}", d);


这篇关于普通数字如何转换成科学记数法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆