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) Perform if / else

Milosz Drozd
Milosz Drozd
9,500 Points

guys i am certainly doing something wrong. Would you be so kind and explain in few words? thank you in advance

string language = Console.ReadLine();

bool goodLanguage = true; if(goodLanguage) { string entry = Console.ReadLine();

Console.WriteLine(entry + "C# Rocks!");
 goodLanguage = false;   

} else {

string badLanguage = Console.ReadLine();

Console.WriteLine(badLanguage + "is not C#");

}

CodeChallenge.cs
string language = Console.ReadLine();

bool goodLanguage = true;
if(goodLanguage)
{
   string entry  = Console.ReadLine();

    Console.WriteLine(entry + "C# Rocks!");

}
else
{   

   string badLanguage = Console.ReadLine();

    Console.WriteLine(badLanguage + "is not C#");


}

1 Answer

Steven Parker
Steven Parker
229,732 Points

For this challenge, "ReadLine" will be used only once, and it should be before any conditional statements.

The conditional test will then determine which output will be shown.

The code for the "ReadLine" and the first condition are both supplied to you when the challenge starts. These should not be changed. Your task to handle the alternate response should be coded by adding lines after the ones provided.