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 trialNJ Lama
7,379 PointsCall the printf method on the console object and make it write out "<YOUR NAME> can code in Java!"
eddwdasdas
// I have setup a java.io.Console object for you named console
String firstName = "Sundar";
printf(firstName+"can code in java!");
1 Answer
Justin Horner
Treehouse Guest TeacherHello Aakar,
Since the printf method is a member of console object (java.io.Console), you will need to call the method from the console object provided.
The benefit of the printf method is being able to provide a format as the first argument and the variables you wish to use as the other arguments. In this case, you don't need to concatenate the string, instead, you'll want to use a format with %s as the placeholder for your first name.
Here's an example
console.printf("%s loves Java!", firstName);
I hope this helps