Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 지름의 끝점을 사용하여 원의 중심 찾기

<시간/>

원의 지름의 두 끝점이 있다고 가정합니다. 이것은 (x1, y1) 및 (x2, y2)입니다. 원의 중심을 찾아야 합니다. 따라서 두 점이 (-9, 3) 및 (5, -7)이면 중심은 위치 (-2, -2)에 있습니다.

우리는 두 점의 중간점이 -

라는 것을 알고 있습니다.

$$(x_{m},y_{m})=\left(\frac{(x_{1}+x_{2})}{2},\frac{(y_{1}+y_{2}) }{2}\오른쪽)$$

예시

#include<iostream>
using namespace std;
class point{
   public:
      float x, y;
      point(float x, float y){
         this->x = x;
         this->y = y;
      }
      void display(){
         cout << "(" << x << ", " <<y<<")";
      }
};
point center(point p1, point p2) {
   int x, y;
   x = (float)(p1.x + p2.x) / 2;
   y = (float)(p1.y + p2.y) / 2;
   point res(x, y);
   return res;
}
int main() {
   point p1(-9.0, 3.0), p2(5.0, -7.0);
   point res = center(p1, p2);
   cout << "Center is at: ";
   res.display();
}

출력

Center is at: (-2, -2)