【C语言小白】
代码 #include <stdio.h>#include <stdlib.h>
int main()
{
double a,b;
scanf("%f%f",&a,&b);
printf("%f",a*b);
return 0;
}
结果
11111
11111
0.000000
--------------------------------
为什么是一堆零{:10_277:} double是%lf
#include <stdio.h>
#include <stdlib.h>
int main()
{
double a,b;
scanf("%lf%lf",&a,&b);
printf("%f",a*b);
return 0;
} double 的占位符是 %lf
#include <stdio.h>
#include <stdlib.h>
int main()
{
double a, b;
scanf("%lf%lf", &a, &b);
printf("%lf", a*b);
return 0;
}
double的输入输出是%lf #include <stdio.h>
#include <stdlib.h>
int main()
{
double a,b;
scanf("%lf%lf",&a,&b);
printf("%lf", a*b);
return 0;
}
页:
[1]