Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sharif Azmy
307 Pointswhat in wrong with my code ?
Hi all im kinda new to coding … cant see whats wrong in my code :
// 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 ("pastTenseVerb"); String really = console.readLine ("really") ;
console.printf ("%s name really pastTenseVerb ",name ,pastTenseVerb);
- the page keep printing :
please make sure you follow the format
name really pastTenseVerb
// 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 ("pastTenseVerb");
String really = console.readLine ("really") ;
console.printf ("%s name really pastTenseVerb ",name ,pastTenseVerb);
2 Answers

Joe Beltramo
Courses Plus Student 22,191 PointsThe instructor is looking for you display the result of the variables in place of the "name" and "pastTenseVerb" areas. So you seem to understand how to use the %s
syntax but you just haven't formulated the string properly. You will want to use the %s
in place of the "name" and "pastTenseVerb" areas like so:
"%s really %s this coding exercise."

Sharif Azmy
307 Pointsthanks a lot for the fast and professional answer :)

Joe Beltramo
Courses Plus Student 22,191 PointsHappy to help