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

on question three I am having a hard time under standing what it is I'm supposed to do. can some one help?

On Challenge task 3 it ask me to "print out to the screen using the printf method...." and I tried console.printf ("%s is learning java!",firstName); but it doesn't seem to work. :/

1 Answer

Hi Andrew,

At this point, you should have the first two lines to read the first and last names:

String firstName = console.readLine("Enter your first name: ");
String lastName = console.readLine("Enter your last name: ");

The last question asks Print out to the screen using the printf method on console, "First name: " and the user's first name

For that you need to use string interpolation as you have suggested. It should look something like:

console.printf("First name: %s", firstName); 

I hope that helps!

Steve.