简体   繁体   中英

Scientific Notation in C#

How do I assign a number that is in scientific notation to a variable in C#?

I'm looking to use Plancks Constant which is 6.626 X 10 -34

This is the code I have which isn't correct:

 Decimal PlancksConstant = 6.626 * 10e-34;

You should be able to declare PlancksConstant as a double and multiply 6.626 by 10e-34 like:

double PlancksConstant = 6.626e-34

Demo

You can set it like this (note the M suffix for the decimal type):

decimal PlancksConstant = 6.626E-34M;

But this will effectively be 0 because you can't represent a number with magnitude less than 1E-28 as a decimal .

So you need to use double instead and can just define this:

double PlancksConstant = 6.626E-34;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM