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 trialBrandon Savoy
418 PointsOn challenge task 3 of 3: My answer is: console.printf ("%s can code in Java!", firstName). Am I doing this right???
On challenge task 3 of 3 for the Name.java questions, my answer appears to be unacceptable. I'm wondering what am I doing wrong after reviewing the video several times.
// I have setup a java.io.Console object for you named console
String firstName = "Brandon";
console.printf ("Brandon can code in Java!");
console.printf ("%s can code in Java!", firstName);
lambda
12,556 PointsThe whitespace between printf and the parenthesis should not matter.
String firstName = "Brandon";
console.printf ("%s can code in Java!", firstName);
// is the same as
console.printf("%s can code in Java!", firstName);
1 Answer
lambda
12,556 PointsThey want you to surround your name in ">" and "<".
They are expecting the output string "<Brandon> can code in Java!" using %s and not hard-coded.
Brandon Savoy
418 PointsBrandon Savoy
418 PointsThanks! I also figured out that there shouldn't be a space between console.printf and the open parenthesis. Thanks again.