Замените метод Main в классе
public static void Main(string[] args)
{
//считываем х с клавиатуры(консоли)
double x = Convert.ToInt32(Console.ReadLine());
//подсчитываем у
double y = Math.Pow(x, 2) + 0.54 * (Math.Sin(2 * x + 2) / 5 * x);
//выводим у
Console.WriteLine(y);
}
Замените метод Main в классе
public static void Main(string[] args)
{
//считываем х с клавиатуры(консоли)
double x = Convert.ToInt32(Console.ReadLine());
//подсчитываем у
double y = Math.Pow(x, 2) + 0.54 * (Math.Sin(2 * x + 2) / 5 * x);
//выводим у
Console.WriteLine(y);
}