Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

โปรแกรม C คำนวณระยะทางระหว่างจุดสองจุด


ให้พิกัดสองจุดและภารกิจคือค้นหาระยะห่างระหว่างจุดสองจุดและแสดงผล

ในระนาบสองมิติ มีสองจุด สมมุติว่า A และ B มีพิกัดตามลำดับเป็น (x1, y1) และ (x2, y2) และในการคำนวณระยะห่างระหว่างจุดทั้งสองนั้นมีสูตรโดยตรงที่ให้ไว้ด้านล่าง

$$\sqrt{\lgroup x2-x1\rgroup^{2}+\lgroup y2-y1\rgroup^{2}}$$

ด้านล่างเป็นแผนภาพแสดงจุดสองจุดและความแตกต่าง

$$\frac{(x_2-x_1)}{(x_1,y_1)\:\:\:\:\:\:(y_2-y_1)\:\:\:\:\:\:(x_2,y_2 )}$$

แนวทางที่ใช้ด้านล่างมีดังนี้

  • ป้อนพิกัดเป็น x1, x2, y1 และ y2
  • ใช้สูตรเพื่อคำนวณความแตกต่างระหว่างจุดสองจุด
  • พิมพ์ระยะทาง

อัลกอริทึม

Start
Step 1-> declare function to calculate distance between two point
   void three_dis(float x1, float y1, float x2, float y2)
      set float dis = sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2) * 1.0)
      print dis
step 2-> In main()
   Set float x1 = 4
   Set float y1 = 9
   Set float x2 = 5
   Set float y2 = 10
   Call two_dis(x1, y1, x2, y2)
Stop

ตัวอย่าง

#include <stdio.h>
#include<math.h>
//function to find distance bewteen 2 points
void two_dis(float x1, float y1, float x2, float y2) {
   float dis = sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2) * 1.0);
   printf("Distance between 2 points are : %f", dis);
   return;
}
int main() {
   float x1 = 4;
   float y1 = 9;
   float x2 = 5;
   float y2 = 10;
   two_dis(x1, y1, x2, y2);
   return 0;
}

ผลลัพธ์

หากเราเรียกใช้โค้ดข้างต้น จะเกิดผลลัพธ์ดังต่อไปนี้

Distance between 2 points are : 1.414214