16

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;
Ben Voigt
  • 277,958
  • 43
  • 419
  • 720
Justin
  • 357
  • 2
  • 7
  • 18

2 Answers2

28

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

double PlancksConstant = 6.626e-34

Demo

Timothy G.
  • 6,335
  • 7
  • 30
  • 46
15

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;
Matthew Strawbridge
  • 19,940
  • 10
  • 72
  • 93