|
@@ -16,9 +16,9 @@ namespace ConsoleApp1
|
|
|
Console.Write("Введите число x = ");
|
|
|
double x = Convert.ToDouble(Console.ReadLine());
|
|
|
// Считаем с округлением
|
|
|
- double Result = (Math.Pow(e, x) - (Math.Pow(y, 2) + 12 * x * y - 3 * Math.Pow(x, 2)) / (18 * y - 1), 2);
|
|
|
+ double Otvet = (Math.Pow(e, x) - (Math.Pow(y, 2) + 12 * x * y - 3 * Math.Pow(x, 2)) / (18 * y - 1), 2);
|
|
|
// Выводим ответ
|
|
|
- Console.WriteLine("Ответ = " + Result);
|
|
|
+ Console.WriteLine("Ответ = " + Otvet);
|
|
|
Console.ReadKey();
|
|
|
}
|
|
|
}
|