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

Ben Rodwell
Ben Rodwell
487 Points

Someone please help me with this question

Please help me

Multiple.java
// I've imported java.io.Console for you.  It is stored in a variable called console for you.
String name = console.readLine("name");
String pastTenseVerb = console.readLine("Enter a pastTenseVerb:  ");
console.printf("%s was very %s", name, pastTenseVerb);

1 Answer

I see, your problem is on the 3/3 code challenge for the Multiple Format Strings challenge. Just change "was very" to "really" on your printf statement, and it should pass you for all 3 challenges. The code challenges can be very picky sometimes so be sure to read the instructions very carefully and if you get an error on a snippet of code that you believe is correct, read the error message because it often tells you what you did wrong.

// I've imported java.io.Console for you.  It is stored in a variable called console for you.
String name = console.readLine("name");
String pastTenseVerb = console.readLine("Enter a pastTenseVerb:  ");
console.printf("%s really %s", name, pastTenseVerb);  //just edit your printf statement, and you will pass all 3 code challenges.

Also, just for future reference, to help you quicker and more effectively you should be more explicit/direct regarding your issue. Just pasting a code snippet and saying something like "please help me" isn't very specific, thus making it harder for others to help you figure out and solve your problem.

Let me know if you have any other questions.