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 Methods Methods

Please help with this task question.

Write a method inside the Frog class named EatFly. It should take a single integer parameter named distanceToFly and return a bool value. It should return true if the frog can reach the fly with its tongue, and false otherwise.

Thats the code and I feel I have it right but its not accepting it. Any help?

Frog.cs
namespace Treehouse.CodeChallenges
{
    class Frog
    {
        public readonly int TongueLength;

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

        public Eatfly(int distanceToFly)
        {
            bool distance = tongueLength <= distance to fly;
            return distance;
        }
    }
}

1 Answer

Steven Parker
Steven Parker
230,688 Points

You're close, but there are a few issues:

  • you need to specify the return type (bool) of the method
  • the method name must be "EatFly", with a capital "F"
  • the tongue length needs to be greater than or equal to the distance for the frog to reach the fly
  • the parameter name must be written as "distanceToFly" (with exact capitalization and no spaces)

Thank you, Steven! It was for sure the first point that was messing me up! The other three I had realized, but I had totally forgot about the return type! Thanks!