Advertisement
Guest User

Untitled

a guest
Apr 14th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.28 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.  
  8. class Task1
  9. {
  10.     static void Main()
  11.     {
  12.         int h = int.Parse(Console.ReadLine());
  13.         int x1 = int.Parse(Console.ReadLine());
  14.         int y1 = int.Parse(Console.ReadLine());
  15.         int x2 = int.Parse(Console.ReadLine());
  16.         int y2 = int.Parse(Console.ReadLine());
  17.         int x3 = int.Parse(Console.ReadLine());
  18.         int y3 = int.Parse(Console.ReadLine());
  19.         int x4 = int.Parse(Console.ReadLine());
  20.         int y4 = int.Parse(Console.ReadLine());
  21.         int x5 = int.Parse(Console.ReadLine());
  22.         int y5 = int.Parse(Console.ReadLine());
  23.         bool insideBuildingFirst = ((y1 >= 0 && y1 <= h) && (x1 >= 0 && x1 <= 3 * h)) || ((y1 >= 0 && y1 <= 4 * h) && (x1 >= h && x1 <= 2 * h));
  24.         bool insideBuildingSecond = ((y2 >= 0 && y2 <= h) && (x2 >= 0 && x2 <= 3 * h)) || ((y2 >= 0 && y2 <= 4 * h) && (x2 >= h && x2 <= 2 * h));
  25.         bool insideBuildingThird = ((y3 >= 0 && y3 <= h) && (x3 >= 0 && x3 <= 3 * h)) || ((y3 >= 0 && y3 <= 4 * h) && (x3 >= h && x3 <= 2 * h));
  26.         bool insideBuildingFourth = ((y4 >= 0 && y4 <= h) && (x4 >= 0 && x4 <= 3 * h)) || ((y4 >= 0 && y4 <= 4 * h) && (x4 >= h && x4 <= 2 * h));
  27.         bool insideBuildingFifth = ((y5 >= 0 && y5 <= h) && (x5 >= 0 && x5 <= 3 * h)) || ((y5 >= 0 && y5 <= 4 * h) && (x5 >= h && x5 <= 2 * h));
  28.         if (insideBuildingFirst)
  29.         {
  30.             Console.WriteLine("inside");
  31.         }
  32.         else
  33.         {
  34.             Console.WriteLine("outside");
  35.         }
  36.         if (insideBuildingSecond)
  37.         {
  38.             Console.WriteLine("inside");
  39.         }
  40.         else
  41.         {
  42.             Console.WriteLine("outside");
  43.         }
  44.         if (insideBuildingThird)
  45.         {
  46.             Console.WriteLine("inside");
  47.         }
  48.         else
  49.         {
  50.             Console.WriteLine("outside");
  51.         }
  52.         if (insideBuildingFourth)
  53.         {
  54.             Console.WriteLine("inside");
  55.         }
  56.         else
  57.         {
  58.             Console.WriteLine("outside");
  59.         }
  60.         if (insideBuildingFifth)
  61.         {
  62.             Console.WriteLine("inside");
  63.         }
  64.         else
  65.         {
  66.             Console.WriteLine("outside");
  67.         }
  68.     }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement