Advertisement
koksibg

Point_on_Rectangle_Border

Jul 27th, 2016
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.86 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Point_on_Rectangle_Border
  8. {
  9.     class Point_on_Rectangle_Border
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             double x1 = double.Parse(Console.ReadLine());
  14.             double y1 = double.Parse(Console.ReadLine());
  15.             double x2 = double.Parse(Console.ReadLine());
  16.             double y2 = double.Parse(Console.ReadLine());
  17.             double x = double.Parse(Console.ReadLine());
  18.             double y = double.Parse(Console.ReadLine());
  19.             if ((((x == x1) || (x == x2)) && (y1 <= y) && (y <= y2)) ||
  20.                 (((y == y1) || (y == y2)) && (x1 <= x) && (x <= x2)) )
  21.                 Console.WriteLine("Border");
  22.             else Console.WriteLine("Inside / Outside");
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement