Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Strings
- {
- class Program
- {
- static void Main(string[] args)
- {
- string[] array2 = { "dasdasd", "dasdasdsad"};
- Console.WriteLine(FindAverage(array2));
- }
- static double FindAverage(string[] a)
- {
- int sum = 0;
- for (int i = 0; i < a.Length; i++)
- {
- sum += a[i].Length;
- }
- return (double)sum / a.Length;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement