Advertisement
desislava_topuzakova

PointsOnRectangleBorder

Jan 27th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class PointOnRectangleBorder {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6.  
  7. double x1 = Double.parseDouble(scanner.nextLine());
  8. double y1 = Double.parseDouble(scanner.nextLine());
  9. double x2 = Double.parseDouble(scanner.nextLine());
  10. double y2 = Double.parseDouble(scanner.nextLine());
  11. double x = Double.parseDouble(scanner.nextLine());
  12. double y = Double.parseDouble(scanner.nextLine());
  13.  
  14. if ((x == x1 || x == x2) && ((y >= y1 && y <= y2))) {
  15. System.out.println("Border");
  16. } else if ((y == y1 || y == y2) && ((x >= x1 && x <= x2))) {
  17. System.out.println("Border");
  18. } else {
  19. System.out.println("Inside / Outside");
  20. }
  21.  
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement