帮帮孩子
求两点之间的距离,代码可以运行,但是没有数据#include<stdio.h>
#include<math.h>
void main()
{
double x1,x2,y1,y2,i;
while(~scanf("%lf %lf %lf %lf",&x1,&y1,&x2,&y2))
{
i=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
printf("%f\n",i);
}
return;
} 实测没有问题啊
注意输入时候 以空格隔开1.5 6.3 2.5 7.3
1.414214
哦对了,你这是个死循环好像 #include<stdio.h>
#include<math.h>
void main()
{
double x1, x2, y1, y2, i;
while (~scanf("%lf %lf %lf %lf", &x1, &y1, &x2, &y2))
{
i = sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
printf("%f\n", i);
break;
}
return;
}
非得用这个奇怪的while循环的话,加个break就行,但是循环就没作用了 昨非 发表于 2020-10-27 18:54
非得用这个奇怪的while循环的话,加个break就行,但是循环就没作用了
可以利用 scanf 的返回值来判断是否结束循环 liuzhengyuan 发表于 2020-10-27 19:05
可以利用 scanf 的返回值来判断是否结束循环
问一下,零输入时scanf返回值为空吗
我不太清楚,但这里测试的时候是死循环 昨非 发表于 2020-10-27 19:06
问一下,零输入时scanf返回值为空吗
我不太清楚,但这里测试的时候是死循环
scanf 输入了几个数就返回 几
如果没有数了 就返回 EOF(具体可以百度)
页:
[1]