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 trialJeremy Williamson
2,545 PointsNot sure whats wrong?
????
string input = Console.ReadLine();
int temperature = int.Parse(input);
if(temperature < 21)
{
Console.Writeline("Too cold!");
}
else if(temperature <= 22)
{
Console.Writeline("Just right.");
}
else(temperature > 22)
{
Console.Writeline("Too hot!");
}
2 Answers
Chris Adamson
132,143 PointsYour pretty close, the last else doesn't need a condition, and the middle condition needs to account for the middle range. Also Writeline should be WriteLine:
string input = Console.ReadLine();
int temperature = int.Parse(input);
if(temperature < 21)
{
Console.WriteLine("Too cold!");
}
else if(temperature >= 21 && temperature <= 22)
{
Console.WriteLine("Just right.");
}
else
{
Console.WriteLine("Too hot!");
}
Barry Ort
12,373 PointsHey Jeremy, it seems like you wrote
temperature <= 22 instead of temperature ==22