두 점의 좌표가 주어지면 두 점 사이의 거리를 구하고 결과를 표시하는 작업입니다.
2차원 평면에는 두 개의 점이 있습니다. A와 B의 각각의 좌표는 (x1, y1) 및 (x2, y2)이고 두 점 사이의 거리를 계산하려면 아래와 같은 직접적인 공식이 있습니다.
$$sqrt{lgroup x2-x1rgroup^{2 }+lgroup y2-y1rgroup^{2}}$$
다음은 두 가지 점과 차이점을 보여주는 차트입니다
$$ frac{(x_2- x_1)} {(x_1,y_1):::::(y_2-y_1)::::::(x_2,y_2)} $$
아래에서 사용하는 방법은 다음과 같습니다 -
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
위 내용은 두 점 사이의 거리를 계산하는 C 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!