A(x,y) нүктесінің радиусы R болатын шеңберге тиістілігін анықтау.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class program
{
static void Main()
{
double x;
double y;
double R;
double a;
Console.Write("x man beriniz");
x = double.Parse(Console.ReadLine());
Console.Write("y man beriniz");
y = double.Parse(Console.ReadLine());
Console.Write("R man beriniz");
R = double.Parse(Console.ReadLine());
if ((x * x + y * y) >= R) Console.WriteLine("vnutri");
else if (x * x + y * y <= R) Console.WriteLine("znaruzhi"); ;
}
}
}
|