j0nze

Point on Rectangle Border

Nov 4th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 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 _3_Point_in_Rectangle
  8. {
  9.     class Program
  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.  
  20.             if ((x == x1 || x == x2) && (y <= y2 && y >= y1))
  21.             {
  22.                 Console.WriteLine("Border");
  23.             }
  24.  
  25.             else if ((y == y1 || y == y2) && (x <= x2 && x >= x1))
  26.             {
  27.                 Console.WriteLine("Border");
  28.             }
  29.  
  30.             else
  31.             {
  32.                 Console.WriteLine("Inside / Outside");
  33.             }
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment