public class Test { public static void Main() { double r, x, y; Console.Write("r = "); r = double.Parse(Console.ReadLine()); Console.Write("x = "); x = double.Parse(Console.ReadLine()); Console.Write("y = "); y = double.Parse(Console.ReadLine()); if ((y>=0)&&(x*x+y*y<=r*r)||(x<=0)&&(y>=-r)&&(y<=x)) Console.WriteLine("Точка попадает в область"); else Console.WriteLine("Точка не попадает в область"); Console.ReadLine(); } }
Пример: <span>r = 3 x = -1 y = -2 Точка попадает в область</span>
procedure Minmax(var a, b: integer); var min, max: integer; begin if a < b then min := a else min := b; if a > b then max := a else max := b; a := min; b := max; end;