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 trialMichael Hill
1,202 PointsNow replace <YOUR NAME> in the console.printf expression with the firstName variable using the string formatter.
Coding will not work
// I have setup a java.io.Console object for you named console
String firstName = "Mike";
console.printf("Hello, my name is $s\n",firstName);
console.printf("Mike, %s can code in Java/n",firstName);
console.printf("%s, can code in Java! \n", firstName);
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You've almost got it in the very last line. That being said, there should only be one printf
statement. You may safely remove the first two printf
statements. The very last line you have is almost spot on, but it has an extra comma.
You wrote:
console.printf("%s, can code in Java! \n", firstName);
But the challenge wants:
console.printf("%s can code in Java! \n", firstName);
// Note the removal of the comma after the %s
Challenges are very strict and your results must generally match to the letter. This includes spelling, capitalization, punctuation, and even spacing!
Hope this helps!
remi poolen
6,697 Pointsremi poolen
6,697 Pointsin the first prinf-line the dollarsign ($) should be a percentage-sign (%). In the second printf-line the "/" should be a "\".