Значение х задается в режиме диалога. использую только арифметические операции вычислить выражение
y = 1 - 2*х + 3*x2 - 4*x3.
разрешается использовать не более восьми операций в одном выражении.
с си шарпа с# консольная программа

kacok2 kacok2    1   11.09.2019 19:04    7

Ответы
Арбуз2200047 Арбуз2200047  10.09.2020 01:55

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace Global

{

   class Program

   {

       static void Main(string[] args)

       {

           string first_x = Console.ReadLine();

           int first_input = Convert.ToInt16(first_x);

           int y = 1 - first_input;

           y = y + 3 * Get_x();

           y = y - 4 * Get_x();

           Console.Write(y);

           Console.Read();

       }

       static int Get_x()

       {

           string input = Console.ReadLine();

           int x = Convert.ToInt16(input);

           return x;

       }

   }

}

Объяснение:

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