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 trialStephen Williams
4,419 PointsWhat is a String formatter?
not sure what im doing wrong
// I have setup a java.io.Console object for you named console
String firstName = "Stephen";
console.printf(firstName "can code in java!");
1 Answer
Derek Markman
16,291 Points// I have setup a java.io.Console object for you named console
String firstName = "Stephen";
console.printf("%s can code in java!", firstName); //make sure your firstName var is included outside of the quotes, but still inside of the printf method.
When using the printf method, to include specific values, be it, numbers, strings etc... you need to use a specific String formatter to include that value into your printf statement. For strings the string formatter you want to use is the "%s" string formatter, for numbers like an int, you would use the "%d" formatter.