Ver código fonte

Итоговый вариант

Irina Filimonova 2 anos atrás
pai
commit
ef65eceefe
1 arquivos alterados com 3 adições e 2 exclusões
  1. 3 2
      Program.cs

+ 3 - 2
Program.cs

@@ -1,4 +1,5 @@
-using System;
+
+using System;
 
 namespace ConsoleApp1
 {
@@ -20,7 +21,7 @@ namespace ConsoleApp1
             // Считаем с округлением
             double Otvet  = (Math.Pow(e, x) - (Math.Pow(y, 2) + 12 * x * y - 3 * Math.Pow(x, 2)) / (18 * y - 1), 2) + z;
             // Выводим ответ
-			Console.WriteLine("Ответ = " + Otvet + x);
+			Console.WriteLine("Ответ = " + Otvet + e);
             Console.ReadKey();
         }
     }