static void Main(string[] args)
{
double P=1;
Console.WriteLine("Введите n>2:");
int n = Convert.ToInt32(Console.ReadLine());
if (n > 2)
for (int i = 2; i <= n; i++)
P = P*(1 - (1 / (Math.Pow(i,2;
Console.WriteLine("Шаг= "+i+" P= "+P);
}
Console.ReadLine();
static void Main(string[] args)
{
double P=1;
Console.WriteLine("Введите n>2:");
int n = Convert.ToInt32(Console.ReadLine());
if (n > 2)
{
for (int i = 2; i <= n; i++)
{
P = P*(1 - (1 / (Math.Pow(i,2;
Console.WriteLine("Шаг= "+i+" P= "+P);
}
}
Console.ReadLine();
}