помогите составить блок схему для алгоритма)))
Console.WriteLine("Программа для вычисления значения функции для вводимых значений переменных a, b, c.");
Console.Write("Введите значение переменной a: ");

double a = ReturnValue();

Console.Write("Введите значение переменной b: ");

double b = ReturnValue();

Console.Write("Введите значение переменной c: ");

double c = ReturnValue();

double y = (Math.Sqrt(Math.Pow(Math.Abs(a), b) - 2) / (b * (Math.Pow(c, 3) - 1)));

Console.WriteLine($"Результат y = {y}");
}
private static double ReturnValue()
{
double res = 0;

while (true)
{
if (!double.TryParse(Console.ReadLine(), out res) || res < 2)
{
Console.WriteLine("Введено неверное значение переменной. Повторите ввод.");
}
else
{
return res;
}
}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.