Advertisement
Spocoman

08. Point on Rectangle Border

Dec 22nd, 2021
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. x1 = float(input())
  2. y1 = float(input())
  3. x2 = float(input())
  4. y2 = float(input())
  5. x = float(input())
  6. y = float(input())
  7.  
  8. if ((x == x1 or x == x2) and y >= y1 and y <= y2) or ((y == y1 or y == y2) and x >= x1 and x <= x2):
  9.     print("Border")
  10. else:
  11.     print("Inside / Outside")
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement