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 trialJohn Paz
296 PointsPrinting "Enter a book title" to the console using the System.Console.Write() method
I entered what I think is all I need to print "Enter a book title to the console", however it keeps telling me it's wrong. What am I doing wrong?
System.Console.Write("Enter a book title:");
2 Answers
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsYou are missing a space after the colon
Francis Lamy
8,218 PointsWeird, I gave it a try and it worked. You seem to have the right thing going, but I believe maybe Henrik is on to something. I don't like saying this but copy mine, it should work, but press restart before pasting it:
System.Console.Write("Enter a book title: ");
John Paz
296 PointsI didn't copy and paste, but it worked, Thank you so much for your help!
John Paz
296 PointsJohn Paz
296 PointsYou're right, thank you for your help!