c语言中为什么2.0e6是不合法的

2026年09月23日 08:11
有1个网友回答
网友(1):

完全合法。
#include
int main(){
float f=2.0e6;
printf("%f",f);
return 0;

}