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) Console I/O Console I/O

On a new line, use the System.Console.Write() method to print "Enter a book title: " to the console.

I just write like this System.Consloe.Write("enter a book title:"); But it told me am wrong mayb I didn't understand z question.

CodeChallenge.cs

1 Answer

Arturo Alviar
Arturo Alviar
15,739 Points

Hi. You understand the question and are going about it the write way you just have a few problems.

  • You misspelled the word Console.
  • The second thing is that you are not printing the string Treehouse wants you to print.

This is how it should look like.

 //notice the capital E in enter and the space after title:
System.Console.Write("Enter a book title: ");

Hope this helps!