Console.WriteLine("Введите координаты точки (x, y):"); int x = int.Parse(Console.ReadLine()); int y = int.Parse(Console.ReadLine()); Console.WriteLine("Введите радиус окружности:"); int r = int.Parse(Console.ReadLine()); double d = Math.Sqrt(x * x + y * y); if (d <= r) { Console.WriteLine("Точка входит в окружность."); } else { Console.WriteLine("Точка не входит в окружность."); }