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

Challenge Task: Use the System.Console.ReadLine method to read the user’s response from the console and store it in a va

Challenge Task 2 of 2 Use the System.Console.ReadLine method to read the user’s response from the console and store it in a variable named bookTitle.

I have retried this problem 4 times following along with the video on Receiving Input with Jeremy McLain.

The only thing I do different here is: not able to save by pressing ctrl + S not able to run compiler also I never get output when I click the preview button after writing the methods

CodeChallenge.cs
System.Console.Write("Enter a book title: ");

string entry = System.Console.ReadLine();

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Monica Wilson ! I received your request for assistance and you're doing terrific! But you were supposed to do something a bit differently. The challenge asks you to to assign the result in a variable named bookTitle, but you are storing it in a variable named entry, so when the challenge goes to look up the value in bookTitle it can't find anything there.

Simply change:

string entry

to:

string bookTitle

Hope this helps! :sparkles:

ok thanks.