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 trialJoseph Salinas
12,086 PointsForeach loop
What am I missing here?
namespace Treehouse.CodeChallenges
{
class FrogStats
{
public static double GetAverageTongueLength(Frog[] frogs)
{
double totalLength = 0;
foreach(Frog frog in frogs)
{
return totalLength / frogs.Length;
}
}
}
}
namespace Treehouse.CodeChallenges
{
public class Frog
{
public int TongueLength { get; }
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
}
}
1 Answer
Ariel Rzeszowski
5,482 PointsTake look for your loop. Use this loop for each item on the Aray. Intead when you use a return statement the method GetAverageTongueLength back a result. You have to sum of TongueLength every frog and then return a division of this sum by frogs.Length
Here is a correct code
foreach(Frog frog in frogs)
{
totalLength += frog.TongueLength; // You adding here a TongueLength of each Frog in frogs.
}
return totalLeght / frogs.Length; // if doesn't work do this: return totalLegth/(double)frogs.Length;