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 Using your New Tools Multiple Format Strings

Jalen Gonel
Jalen Gonel
1,815 Points

I think your challenge program has an error itself. It keeps telling me I am not using %s when I am.

I check the console to check for errors and it gives me none, yet I can't go on

Multiple.java
// I've imported java.io.Console for you.  It is stored in a variable called console for you.
String name = console.readLine("What is your name");
String pastTenseVerb = console.readLine("Enter a verb");
System.out.printf("%s really %s this coding exercise.",name, pastTenseVerb);

I agree. I re-did the challenge, and this code should work, but it's not:

// I've imported java.io.Console for you.  It is stored in a variable called console for you.


//task 1:
String name = console.readLine("Enter a name:  ");

//task 2:
String pastTenseVerb = console.readLine("Enter a past tense verb:  ");

//task 3:
console.readLine("%s really %s this coding exercise", name, pastTenseVerb);

All it's saying is: ':heavy_multiplication_x:Bummer! Looks like you forgot to use the %s formatter'.

2 Answers

Try console.printf("%s really %s this coding exercise.", name, pastTenseVerb); for the last line.

Steve.

AHA! you were saying System.out.println() instead of console.printf(). The problem was that System.out() doesn't do %s. And in my case, I had console.readLine() instead of console.printf().