C#运算符号

double x=5.1e3;// 5.1乘以10 3次方。 x就是 5100

// :  5.1e+3=5.1e3=5.1e03=5.1e+03

 

double y=5.1e-3;// 5.1乘以10 -3次方。 y就是 0.0051

double z=5.1e0;// 5.1乘以10 0次方。 z就是 5.1

原文地址:https://www.cnblogs.com/luchunqing/p/3620111.html