1条回答 默认 最新
- qzjhjxj 2021-05-29 13:49关注
供参考:
#include<iostream> #include<cmath> using namespace std; class Point{ private: double x,y; public: Point(double a=0,double b=0):x(a),y(b){}; double GetX()const; double GetY()const; void print()const; friend double GetLength(const Point&,Point&); }; double Point::GetX()const { return x; } double Point::GetY()const { return y; } void Point::print()const { cout<<"("<<x<<","<<y<<")"<<endl; } double GetLength(const Point &A,Point &B) { double Length; Length = sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y)); return Length; } int main() { const Point p1; cout<<"p1:("<<p1.GetX()<<","<<p1.GetY()<<")"<<endl; Point p2(4,3); cout<<"p2:("<<p2.GetX()<<","<<p2.GetY()<<")"<<endl; cout<<"p1<==>p2 Length="<<GetLength(p1,p2)<<endl; return 0; } //p1:(0,0) //p2:(4,3) //p1<==>p2 Length=5 //请按任意键继续. . .
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 麒麟V10桌面版SP1如何配置bonding
- ¥15 Marscode IDE 如何预览新建的 HTML 文件
- ¥15 K8S部署二进制集群过程中calico一直报错
- ¥15 java python或者任何一种编程语言复刻一个网页
- ¥20 如何通过代码传输视频到亚马逊平台
- ¥15 php查询mysql数据库并显示至下拉列表中
- ¥15 freertos下使用外部中断失效
- ¥15 输入的char字符转为int类型,不是对应的ascall码,如何才能使之转换为对应ascall码?或者使输入的char字符可以正常与其他字符比较?
- ¥15 devserver配置完 启动服务 无法访问static上的资源
- ¥15 解决websocket跟c#客户端通信