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 trialBryony Stewart
1,230 PointsAm I doing it wrong? if/else/else if
Need a bit of help with these if else if else's
string input = Console.ReadLine();
int temperature = int.Parse(input);
if(input < 21)
{
System.Console.WriteLine("Too cold!");
}
else
{
System.Console.WriteLine("Just right.");
}
else if (input > 22)
{
System.Console.WriteLine("Too hot!");
}
2 Answers
Ignacio Uriz
5,042 PointsI haven't got to this exercise yet but I think your code should look like this
string input = Console.ReadLine(); int temperature = int.Parse(input);
if(input < 21) { System.Console.WriteLine("Too cold!");
}else {
System.Console.WriteLine("Just right.");
}else if(input>22)
{ System.Console.WriteLine("Too hot!"); }
Tega Erekata
4,284 Pointsstring input = Console.ReadLine();
int temperature = int.Parse(input);
if(temperature < 21)
{
Console.WriteLine("Too Cold!");
}
else if(temperature >=21 && temperature < 23) //you can also use (temperature >=21 && temperature <=22)
{
Console.WriteLine("Just right.");
}
else
{
Console.WriteLine("Too hot!" );
}