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

Shari Cassidy
Shari Cassidy
202 Points

I am getting the error, "Bummer: Ensure you put the string formatter `%s` in your format string" but I do have the "%s"

I am getting the error, "Bummer: Ensure you put the string formatter %s in your format string" but I do have the "%s" included in my format string: "String.format("First name: %s", firstName)"

IO.java
String firstName = console.readLine("What is your first name? ");
String lastName = console.readLine("What is your last name? ");
String formatted = String.format("First name: %s", firstName);
console.printf(formatted);

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,567 Points

Hi Shari. Your code is correct but not exactly what the challenge asked for. Try putting your String.format in the printf and it should work.