C+n编程题:设计一个点类(point),具有数据成员x、y(点的坐标),以及设置、输出数据成员及

2024-11-24 01:08:59
推荐回答(1个)
回答1:

#include 
using namespace std;
  
  struct poi{
   double x,y;
  
   void set(double a,double b){
    x=a;y=b;
}

void outp(){
  printf("%.2lf %.2lf \n",x,y);
}
  };
  
  double dis(poi a,poi b){
   return((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
  }
  
  int main(){
  }