必須是指數值,而非 '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;