logo

Crowdly

Browser

Add to Chrome

Що буде виведено у результаті виконання програми? class Program  {  stat...

✅ 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;  }  } 

0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on do.nmu.org.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome