当前位置:   article > 正文

Point(类与构造) Python_python point类

python point类

目录

题目描述

思路分析

AC代码


题目描述

下面是一个平面上的点的类定义,请在类外实现它的所有方法,并生成点测试它。

输入

测试数据的组数 t

第一组测试数据点p1的x坐标 第一组测试数据点p1的y坐标 第一组测试数据点p2的x坐标 第一组测试数据点p2的y坐标

..........

输出

输出p1到p2的距离

在C++中,输出指定精度的参考代码如下:

#include <iostream>

#include <iomanip> //必须包含这个头文件

using namespace std;

void main( )

{ double a =3.141596;

cout<<fixed<<setprecision(3)<<a<<endl; //输出小数点后3位

}

输入样例1

2
1 2 3 4
-1 0.5 -2 5

输出样例1

Distance of Point(1.00,2.00) to Point(3.00,4.00) is 2.83
Distance of Point(-1.00,0.50) to Point(-2.00,5.00) is 4.61

思路分析

一开始我的构造函数写成这样:

class Point:
    def __init__(self):
        self.x,self.y=0,0
    def __int__(self,x,y):
        self.x,self.y=x,y

报了这样的错误:

TypeError: Point.__init__() takes 1 positional argument but 3 were given

去网上搜了一下,发现是__init__写成了__int__

…… 

AC代码

  1. import math
  2. class Point:
  3. def __init__(self):
  4. self.x,self.y=0,0
  5. def __init__(self,x,y):
  6. self.x,self.y=x,y
  7. def getX(self):
  8. return self.x
  9. def getY(self):
  10. return self.y
  11. def setX(self,x):
  12. self.x=x
  13. def setY(self,y):
  14. self.y=y
  15. def distanceToAnotherPoint(self,p):
  16. return math.sqrt((self.x-p.x)**2+(self.y-p.y)**2)
  17. test=int(input())
  18. for i in range(0,test):
  19. x1,y1,x2,y2=map(float,input().split())
  20. a,b=Point(x1,y1),Point(x2,y2)
  21. print('Distance of Point(%.2f,%.2f)to Point(%.2f,%.2f)is %.2f'%(a.getX(),a.getY(),b.getX(),b.getY(),a.distanceToAnotherPoint(b)))
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/186584
推荐阅读
相关标签
  

闽ICP备14008679号