应输入指数值而非“character”
Remarks
用作浮点常数的指数的字符不是有效的数字。 请确保使用范围内的指数。
Example
以下示例生成 C2021:
// C2021.cpp
float test1=1.175494351E; // C2021
Possible resolution:
// C2021b.cpp
// compile with: /c
float test2=1.175494351E8;
应输入指数值而非“character”
用作浮点常数的指数的字符不是有效的数字。 请确保使用范围内的指数。
以下示例生成 C2021:
// C2021.cpp
float test1=1.175494351E; // C2021
Possible resolution:
// C2021b.cpp
// compile with: /c
float test2=1.175494351E8;