fork download
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. // Wartości wejściowe
  8. double x = 1562;
  9. double y = 3861;
  10. double z = 131623;
  11.  
  12. // Obliczenie wyniku
  13. double result = G(x, y, z);
  14.  
  15. // Wyświetlenie wyniku
  16. Console.WriteLine($"Wynik: {result:F2}");
  17. }
  18.  
  19. static double G(double x, double y, double z)
  20. {
  21. return (x * y + y * z + x * z) / ((x + y + z) / 2);
  22. }
  23. }
  24.  
Success #stdin #stdout 0.05s 29220KB
stdin
Standard input is empty
stdout
Wynik: 10504.83