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