Browse Source

добавили возможность считать возраст

Irina Filimonova 2 years ago
parent
commit
9fd72217ae
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Program.cs

+ 2 - 1
Program.cs

@@ -20,7 +20,8 @@ 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;
             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);
+			Console.WriteLine("Ответ = " + Otvet);
+			Console.WriteLine("Ответ = " + Otvet);
             Console.ReadKey();
             Console.ReadKey();
         }
         }
     }
     }