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 trialstar escarsega
363 PointsNow replace <YOUR NAME> in the console.printf expression with the firstName variable using the string formatter.
how do you do it?
// I have setup a java.io.Console object for you named console
String firstName= "star";
console.printf("s% can code in java!");
2 Answers
J.D. Sandifer
18,813 PointsDane's answer gives all the information needed, but make sure you follow the challenge directions, too. The end result should be printing "<Your Name> can code in Java!" like this:
// I have setup a java.io.Console object for you named console
String firstName = "star";
console.printf("%s can code in Java!", firstName);
Dane Parchment
Treehouse Moderator 11,077 PointsYou have the syntax for your printf statement wrong it supposed to look like this:
console.printf("%flag", variableThatFlagPointsTo);
So with that in mind see if you can solve it, if not the answer is:
console.printf("%s", firstname);
Dane Parchment
Treehouse Moderator 11,077 PointsDane Parchment
Treehouse Moderator 11,077 PointsCompletely forgot about the actual challenge...oops.