`x1,x2,y1,y2` and `dist` not initialized that was the problem :)
#include<stdio.h>
#include<math.h>
#define _CRT_SECURE_NO_WARNINGS
float distance(float a,float b,float c,float d);
int main()
{
float x1,y1,x2,y2,dist;
printf("Input x1: ");
scanf("%f", &x1);
printf("Input y1: ");
scanf("%f", &y1);
printf("Input x2: ");
scanf("%f", &x2);
printf("Input y2: ");
scanf("%f", &y2);
dist=distance(x1,x2,y1,y2);//you didn't put the value of the func into a variable
printf("Distance between the given points is: %.2f",sqrt(dist));
return 0;
}
float distance(float a,float b,float c,float d)//since we already give a,b,c,d a value from calling the func in main
{
float dist;
dist=((b-a)*(b-a) +(d-c)*(d-c));//we just swapped you x1,x2,y1,y2 to the a,b,c,d
return dist;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…