超过6位小数怎么写,这样对么
#include <stdio.h>
int main(){
float b =1.825622335;
double c =1.825622335;
printf("%f",b);
printf("%f",c);
return 0;
}
#include <stdio.h>
int main(){
float b =1.825622335;
double c =1.825622335;
printf("%f",b);
printf("%f",c);
return 0;
}
2018-08-03
举报