在一本基础性C#书中,这样介绍“float”、“double”和“decimal”,并且说“float”和“double”以“+/– m x 2e”形式表示,“decimal”用“+/– m x 10e”的形式表示,这两个公式一样和东西代表什么意思,怎么解释?以下是书中的原文:There are three floating point variable types that we can use: float, double, and decimal. The first two of these store floating points in the form +/– m x 2e, where the allowed values for m and e differ for each type. decimal uses the alternative form +/– m x 10e.