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 trialSharif 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