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

Java Java Basics Getting Started with Java IO

cant print firstname

i keep getting a compiler error... What am i doing wrong?

IO.java
// I have imported java.io.Console for you.  It is a variable called console.
String firstName = ("Bryce");
  console.readLine("%s, firstName");
String lastName = ("Hunter");
  console.readLine("%s, lastName");
String console.readLine ("Enter first name: ");
console.printf("First name: %s", firstName);

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Bryce;

Welcome to Treehouse!

What we want to do in this challenge is to generate a variable like firstName and assign it to the input from the console like so:

String firstName = console.readLine("Your first name: ");

That will prompt at the console for the user to input something, hopefully with our prompting text of Your first name: we get them to input their first name, right? At any rate, that response will then be stored into a String variable called firstName.

See if that helps point you in the right direction for the rest of the challenge and post back if you are still stuck.

Happy coding,
Ken