দুইটি বিন্দুর মধ্যে দূরত্ব নির্ণয় কররা জন্য "সি"তে লেখা একটি প্রোগাম ।
প্রোগামটি লিখার জন্য একটি সুত্র ব্যবহার করা হয়েছে
সুত্রটি হল ঃ
// find out the distance between two points
#include <stdio.h>
#include <math.h>
int main()
{
float x1, y1, x2, y2, gdistance;
printf("input x1: ");
scanf("%f", &x1);
printf("input y1: ");
scanf("%f", &y1);
printf("input x2: ");
scanf("%f", &x2);
printf("nput y2: ");
scanf("%f", &y2);
gdistance = ((x2-x1)*(x2-x1))+((y2-y1)*(y2-y1));
printf("Distance between two points: %.4f", sqrt(gdistance));
printf("\n");
return 0;
}
simple output :
input x1 : 5
input x2 : 3
input y1 : 2
input y2 : 2
distance between two points : 2.0000
0 Comments:
Post a Comment