Kaynağa Gözat

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

Irina Filimonova 2 yıl önce
ebeveyn
işleme
9fd72217ae
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  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;
             // Выводим ответ
-            Console.WriteLine("Ответ = " + Otvet);
+			Console.WriteLine("Ответ = " + Otvet);
+			Console.WriteLine("Ответ = " + Otvet);
             Console.ReadKey();
         }
     }