Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Objects Loops and Final Touches For Loops

Joshua Thao
Joshua Thao
6,439 Points

I am stuck and don't know how to get the average of the tongue length. Can anyone help me solve and explain.

I am not sure where else to go from here. I have been stuck for about two hours. Not sure which part goes where for the return part.

FrogStats.cs
namespace Treehouse.CodeChallenges
{
    class FrogStats
    {
        public static double GetAverageTongueLength(Frog[] frogs)
        {
            double total = 0;
            for(int i = 0; i < frogs.Length; i++) 
            {
                Frog frog = frogs[i];
                total +=
            }
            return 
        }
    }
}
Frog.cs
namespace Treehouse.CodeChallenges
{
    public class Frog
    {
        public int TongueLength { get; }

        public Frog(int tongueLength)
        {
            TongueLength = tongueLength;
        }
    }
}

1 Answer

Emmanuel C
Emmanuel C
10,636 Points

The Frog class has an int property called TongueLength. So its asking you to get the average of that value from the array of frogs being passed in. You can access that value when going through the loop with dot notation.

for(int i = 0; i < frogs.Length;i++)
{
    total += frogs[i].TongueLength;
}

Dont forget average is the sum of all numbers then divided by the amount of numbers. So frogs.Length will come in handy again.