Нужно просто присвоить переменным значения х в степенях. Тогда необходима всего одна операция. Как я понял.
using System;
namespace name
{
class Program
static void Main()
double x, a, b, c, res;
Console.Write("Введите х: ");
x = Convert.ToDouble(Console.ReadLine());
a = x * x; //x^2
b = a * x; //x^3
c = a * a; //x^4
res = 2 * c - 3 * b + 4 * a - 5 * x + 6;
Console.WriteLine("Ответ: {0}", res);
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Нужно просто присвоить переменным значения х в степенях. Тогда необходима всего одна операция. Как я понял.
using System;
namespace name
{
class Program
{
static void Main()
{
double x, a, b, c, res;
Console.Write("Введите х: ");
x = Convert.ToDouble(Console.ReadLine());
a = x * x; //x^2
b = a * x; //x^3
c = a * a; //x^4
res = 2 * c - 3 * b + 4 * a - 5 * x + 6;
Console.WriteLine("Ответ: {0}", res);
}
}
}