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

Bryan Sory
Bryan Sory
1,978 Points

unexpected character '{ error on if/else if/else exercise

Is the error in the 'or' statement?

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

1 Answer

andren
andren
28,558 Points

The problem is actually the else part of your code, an else statement does not take a condition, it is executed automatically if none of the conditions specified above it was met, that is what differentiates it from an else if statement.

You are also printing out "Just right" instead of "Just right." (There is a period on the end), which matters since challenges are extremely picky about text output.

If you fix that typo and either change the else statement to an else if statement, or remove the condition attached to the else statement then your code will pass.

Bryan Sory
Bryan Sory
1,978 Points

Thanks Andren