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 trialchristopher walsh
7,272 Pointsend of C# quiz
I can't figure out what I'm writing wrong. this is what I'm putting in
string language = Console.ReadLine();
if(language == "C#") { System.Console.WriteLine("C# Rocks!"); } else { System.Console.Write(language + "is not C#.");
}
string language = Console.ReadLine();
if(language == "C#") {
System.Console.WriteLine("C# Rocks!"); }
else { System.Console.Write(language + "is not C#.");
}
1 Answer
Ken Alger
Treehouse TeacherChristopher;
Remember that when we concatenate strings extra spaces must typically be put in ourselves. If you include a space at the beginning of "is not C#" and make it " is not C#" your code seems to work fine.
Happy coding,
Ken
christopher walsh
7,272 Pointschristopher walsh
7,272 Pointsthank you.
Ken Alger
Treehouse TeacherKen Alger
Treehouse Teacher