Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Roberto Martinez
3,322 PointsHelp - Error with Frog/Loop Challenge code
I am getting the following error and I can't figure out why: FrogStats.cs(21,17): error CS0019: Operator +=' cannot be applied to operands of type
double' and `Treehouse.CodeChallenges.Frog'
Compilation failed: 1 error(s), 0 warnings
Code:
namespace Treehouse.CodeChallenges { class FrogStats { private readonly Frog _tongueLength;
public FrogStats(Frog tongueLength)
{
_tongueLength = tongueLength;
}
public static double GetAverageTongueLength(Frog[] frogs)
{
double sum = 0;
double tally = 0;
double average = 0;
for(int i = 0; i < frogs.Length; i++)
{
Frog frog = frogs[i];
sum += frog;
i++;
}
average = sum / frogs.Length - 1;
return average;
}
}
}
namespace Treehouse.CodeChallenges
{
class FrogStats
{
private readonly Frog _tongueLength;
public FrogStats(Frog tongueLength)
{
_tongueLength = tongueLength;
}
public static double GetAverageTongueLength(Frog[] frogs)
{
double sum = 0;
double tally = 0;
double average = 0;
for(int i = 0; i < frogs.Length; i++)
{
Frog frog = frogs[i];
sum += frog;
i++;
}
average = sum / frogs.Length-1;
return average;
}
}
}
namespace Treehouse.CodeChallenges
{
public class Frog
{
public int TongueLength { get; }
public Frog(int tongueLength)
{
TongueLength = tongueLength;
}
}
}
2 Answers

Steven Parker
216,135 PointsYou can't add a "frog" to a number. You probably only wanted to add the frog's tongue length.
Also, you have an increment clause in your "for" loop, but also a separate increment statement inside the loop (you probably don't want both). And why would you subtract one from the average?

Roberto Martinez
3,322 PointsSteven, Thank you! That helped. I figured it out.