如何将科学记数法中的数字分配给C#中的变量?
我想使用Plancks Constant,即6.626 X 10 -34
这是我的代码,这是不正确的:
Decimal PlancksConstant = 6.626 * 10e-34;
Timothy G... 15
您应该可以声明PlancksConstant
为double
和乘以6.626乘以10e-34,如:
double PlancksConstant = 6.626e-34
演示
您应该可以声明PlancksConstant
为double
和乘以6.626乘以10e-34,如:
double PlancksConstant = 6.626e-34
演示
你可以像这样设置它(注意类型的M
后缀decimal
):
decimal PlancksConstant = 6.626E-34M;
但这实际上是0,因为你不能代表幅度小于1E-28的数字decimal
.
所以你需要使用double
而不是定义它:
double PlancksConstant = 6.626E-34;