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 trialWilson Luciano
1,228 PointsNow replace <YOUR NAME> in the console.printf expression with the firstName variable using the string formatter?
I know the string variable is %s but when I change my name and enter the variable is giving me an error.
// I have setup a java.io.Console object for you named console
String firstName = "Wilson" ;
console.printf("Hello, my name is Wilson") ;
console.printf("<Wilson> can code in Java") ;
3 Answers
Jennifer Nordell
Treehouse TeacherChallenges are very picky. Try not to do anything it doesn't explicitly ask for. In your code you have an extra printf statement. I removed that statement and then edited your last line and it passes the challenge. Take a look at what it wants:
// I have setup a java.io.Console object for you named console
String firstName = "Wilson" ;
console.printf("%s can code in Java", firstName) ;
Jeremy Hill
29,567 PointsThe format needs to be: printf("Hello, my name is %s", firstName);
Wilson Luciano
1,228 PointsI did it that way but is not working: Error, Make sure you add the %s
formatter
Wilson Luciano
1,228 PointsThanks Jennifer, that was the issue.