C语言中一个程序多次使用scanf函数

时间:2022-03-23 23:51:27

今天复习遇到了一个函数主体使用多次scanf函数的情况。但是在实际运行中发现只有第一个scanf正常赋值了,之后的scanf函数均未赋值,被赋值为回车。

代码:

#include <stdio.h>
#include <math.h>
double cal(double a1, double b1, double a2, double b2)
{
double t;
// t = sqrt((a1 - ) * (a1 - b1) + (a2 - b2) * (a2 - b2));
t = sqrt(pow((a1-a2),2)+pow((b1-b2),2));
return t;
}
int main(int argc, char const *argv[])
{
double x1 = 0, x2 = 0, y1 = 0, y2 = 0, d = 0;
printf("Please input section A :\n");
scanf("%lf%lf", &x1, &y1);
fflush(stdin);
printf("Please input section B :\n");
scanf("%lf%lf", &x2, &y2);
d = cal(x1,y1,x2,y2);
printf("The distance is %f\n", d);
return 0;
}

查了书之后发现函数第一次调用scanf之后,只从stdin中取走了信息。但是回车是没有取走的。所有第二次调用会出现直接返回的现象,将回车取走。

所以需要加上fflush()操作,清空stdin。