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 trialSuman Adhikari
573 PointsAdd a variable to store a user’s last name using console.readLine. Make sure the variable is the camel cased........
Add a variable to store a user’s last name using console.readLine. Make sure the variable is the camel cased representation of "last name"
3 Answers
Jeremy Faith
Courses Plus Student 56,696 PointsI just went to the task and it is asking for the first name. Just change lastName to firstName.
String firstName = console.readLine("Enter your first name.");
Alberry Rivera
Courses Plus Student 708 PointsThank you for the help. Much appreciated.
Jeremy Faith
Courses Plus Student 56,696 PointsThe variable name they are looking for should be 'lastName'. Now just write it out as a statement:
String lastName = console.readLine("Enter your last name.");
Alberry Rivera
Courses Plus Student 708 PointsIt doesn't work.
Michael kulikovskiy
757 PointsString firstName = console.readLine("What is your name? "); String lastName = console.readLine("What is your last name? ");
Jeremy Faith
Courses Plus Student 56,696 PointsJeremy Faith
Courses Plus Student 56,696 PointsThe variable name they are looking for should be 'lastName'. Now just write it out as a statement:
String lastName = console.readLine("Enter your last name.");