Дано x, вычислить значения 1-2x+3x^2-4x^3 и 1+2x+3x^2+4x^3
c#
нужно,

ГАЛЯ2006261011444 ГАЛЯ2006261011444    1   24.01.2020 13:10    2

Ответы
Aрiшkа Aрiшkа  11.10.2020 02:59

using System;

   

public class Program

{

public static void Main()

{

 double x = Double.Parse(Console.ReadLine());

 double y = 1 - 2 * x + 3 * Math.Pow(x, 2)- 4 * Math.Pow(x, 3);

 Console.WriteLine(y);  //1-2x+3x^2-4x^3

 y = 1 + 2 * x + 3 * Math.Pow(x, 2)+ 4 * Math.Pow(x, 3);

 Console.WriteLine(y);  //1+2x+3x^2+4x^3

}

}

ПОКАЗАТЬ ОТВЕТЫ
milka876 milka876  11.10.2020 02:59

Объяснение:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

 

namespace example

{

   class Program

   {

       static void Main(string[] args)

       {

           int x, answer1, answer2;

           Console.Write("Введите x : ");

           x = int.Parse(Console.ReadLine());

           answer1 = 2*x+3*Convert.ToInt32(Math.Pow(x,2))-4*Convert.ToInt32(Math.Pow(x,3));

           answer2 = 1+2*x+3*Convert.ToInt32(Math.Pow(x,2))+4*Convert.ToInt32(Math.Pow(x,3));

           Console.WriteLine("Значение первого выражения : " + answer1);

           Console.WriteLine("Значение второго выражения : " + answer2);

           Console.ReadLine();

       }

   }

}

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика