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# Basics (Retired) Perfect if / else if / else

Hermes Crespo
Hermes Crespo
980 Points

I entered the code correctly because it does gives the answer depending on the temperature value entered, however,

... for some reason the site keeps telling me that I am wrong. And, it even says: " I entered 21 and expected "Just Right" and got "just right!".. .... Thus. what is the problem???

Here is my code for the challenge on the temperatures:

string input = Console.ReadLine();

                int temperature = int.Parse(input);

                if (temperature > 22)
                {
                    Console.WriteLine("Too hot!");
                }
                else if (temperature < 21)
                {
                    Console.WriteLine("Too cold!");
                }
                else
                {
                   Console.WriteLine("Just right!");                 
                }
CodeChallenge.cs
string input = Console.ReadLine();
int temperature = int.Parse(input);
if (temperature > 22)
       {
           Console.WriteLine("Too hot!");
       }
 else if (temperature < 21)
         {
            Console.WriteLine("Too cold!");
         }
  else
       {
          Console.WriteLine("Just right!");                 
        }  

1 Answer

Steven Parker
Steven Parker
229,644 Points

The challenges are very picky about correct output strings!

In this case the challenge asked for the message "Just right." (with a period), but the program is giving "Just right!" (with an exclamation point) instead.