✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено у результаті виконання програми?
class Program
{ static void Main(string[] args)
{ Console.WriteLine(Average(5, 3, 7));
Console.ReadLine(); }
public static double Average(params int[] values)
{ double sum = 0;
for (int i = 0; i < values.Length; i++) { sum += values[i]; }
return sum/values.Length; } }