Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class PointOnRectangleBorder {
- public static void main(String[] args) {
- Scanner console = new Scanner(System.in);
- double x1 = Double.parseDouble(console.nextLine());
- double y1 = Double.parseDouble(console.nextLine());
- double x2 = Double.parseDouble(console.nextLine());
- double y2 = Double.parseDouble(console.nextLine());
- double x = Double.parseDouble(console.nextLine());
- double y = Double.parseDouble(console.nextLine());
- boolean conditionForX = (x == x1 || x == x2) && (y > y1 && y < y2);
- boolean conditionForY = (y == y1 || y == y2) && (x > x1 && x < x2);
- if (conditionForX || conditionForY) {
- System.out.println("Border");
- } else {
- System.out.println("Inside/Outside");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement