Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApplication9
- {
- class Program
- {
- static void Main(string[] args)
- {
- var h = int.Parse(Console.ReadLine());
- var x = int.Parse(Console.ReadLine());
- var y = int.Parse(Console.ReadLine());
- if (((x > 0) && (x < 3 * h) && (y > 0) && (y < h)) || ((x > h) && (x < 2 * h) && (y > h) && (y < 4 * h)) || ((x > h) && (x < 2 * h) && (y == h)))
- {
- Console.WriteLine("Inside");
- }
- else if (((0 <= x) && (x <= 3 * h) && (y == 0)) || ((x == 0) && (y >= 0) && (y <= h)) || ((x == 3 * h) && (y >= 0) && (y <= h)) || ((x >= 0) && (x <= h) && (y == h))
- || ((x == h) && (y >= h) && (y <= 4 * h)) || ((x == 2 * h) && (y >= h) && (y <= 4 * h)) || ((x >= h) && (x <= 2 * h) && (y == 4 * h))||((x>=2*h)&&(x<=3*h)&&(y==h)))
- {
- Console.WriteLine("border");
- }
- else
- {
- Console.WriteLine("outside");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement