Advertisement
Guest User

Untitled

a guest
Nov 13th, 2016
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.06 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 _14.PointInFigure
  8. {
  9.     class PointInFigure
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int h = int.Parse(Console.ReadLine());
  14.             int x = int.Parse(Console.ReadLine());
  15.             int y = int.Parse(Console.ReadLine());
  16.  
  17.             if (x > h && x < 2*h && y < 4*h  && y >= h || x > 0 && x < 3*h  && y > 0 && y < h)
  18.             {
  19.                 Console.WriteLine("inside");
  20.             }
  21.             else if ((x == h && y >= h && y <= 4*h )|| (x == 2*h && y >= h && y <= 4*h) || (y == 4*h && x >= h && x <= 2*h) ||
  22.                 (y == h && x >= 0 && x <= h) || (y == h && x >= 2*h && x <=3*h)
  23.                 || (x == 0 && y >=0 && y <= h )|| (x == 3*h && y <=h && y >=0) || (y == 0 && x >= 0 && x <= 3*h))
  24.             {
  25.                 Console.WriteLine("border");
  26.             }
  27.             else
  28.             {
  29.                 Console.WriteLine("outside");
  30.             }
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement