Fejezet 6

This commit is contained in:
2021-12-10 08:46:38 +01:00
parent 2d855649f6
commit f74306bc91
15 changed files with 161 additions and 0 deletions

16
fejezet 6/f13/f13.py Normal file
View File

@@ -0,0 +1,16 @@
#v2x-v1y=v2x0-v1y0
#(y2-y1)⋅(x-x1)=(x2-x1)⋅(y-y1)
x1 = int(input())
x2 = int(input())
y1 = int(input())
y2 = int(input())
def meredekseg(x1,x2,y1,y2):
y3 = (y2-y1)
x3 = (x2 - x1)
fel-tiz = 10
3harom = 3