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

yakov silutin
yakov silutin
1,367 Points

Nothing seems to work for me, please help. The program won't compile...

I tried many options:

  1. declaring the distanceToFly in the Frog class 2.declaring the distanceToFly in the beginning of the program 3.making a Fly class and declaring the distanceToFly as a Fly method.

I'm lost for ideas, please help.

Thanks!

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

        public Fly(int distanceToFly)
        {
            DistanceToFly = distanceToFly;
        }
    }


    class Frog
    {
        public readonly int TongueLength;

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

        public bool EatFly(Frog frog)
        {
            bool eat = Fly.distanceToFly >= Frog.tongueLength;

            return eat;
        }
    }
}

3 Answers

Looking at your code helped me fix mine actually:

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

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

    public bool EatFly(int distanceToFly) 
    {
        bool eat = TongueLength >= distanceToFly;

        return eat;
    }
}

}

Your parameter for EatFly is Frog frog. Its supposed to be int distanceToFly as stated in the prompt.

You had the right idea with: bool eat = Fly.distanceToFly >= Frog.tongueLength; I borrowed your idea except to me it made sense that if TongueLength is greater than distanceToFly, then that means that the Frog will be able to eat the fly. And then, return that. That passed for me. Hope that helps.

Autif

Alex Arzamendi
Alex Arzamendi
10,042 Points

Hey Bud! which problem set is this one? gimme the exact location, i'll give it a go and help you find the solution

yakov silutin
yakov silutin
1,367 Points

Hi Alex,

Its in C# objects , methods , and the question is : "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."

The code you start with is :

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

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

}

Thanks!! Yakov