Question: This program will be ran through a Python 3 IDE. Write a program that takes as input two opposite corners of a rectangle: the lower
This program will be ran through a Python 3 IDE.
Write a program that takes as input two opposite corners of a rectangle: the lower left-hand corner (x1,y1) and the upper right-hand corner (x2,y2). Finally, the user is prompted for the coordinates of a third point (x,y). The program should print Boolean value True or False based on whether the point (x,y) lies within the rectangle. Sample runs are shown below
Enter x1: 1 Enter y1: 3 Enter x2: 10 Enter y2: 6 Enter x: 4 Enter y: 4 True
Enter x1: 1 Enter y1: 3 Enter x2: 10 Enter y2: 6 Enter x: 4 Enter y: 2 False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
