求解程序哪边错了?
本帖最后由 帕尼君 于 2014-6-8 12:57 编辑#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void main()
{
double a,b,c,d,e,f,g,h;//这是算屏幕ppi的公式 但是算出来都是等于0 不知道哪边错了
scanf("%f %f %f",&a,&b,&c);
d = pow ( a , 2 );
e = pow ( b , 2 );
f = d + e;
g = sqrt(f);
h = g / c;
printf("%f\n",h);
system("pause");
return 0;
}
scanf("%lf %lf %lf",&a,&b,&c); printf("%lf");
oggplay 发表于 2014-6-8 12:59 static/image/common/back.gif
scanf("%lf %lf %lf",&a,&b,&c); printf("%lf");
嗯嗯 谢谢 太粗心了 少打了个l谢谢 double -> %lf
页:
[1]