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 trialTojo Alex
Courses Plus Student 13,331 PointsIt asks me to add the &s format but where ?
Where do I have to add the format.
String firstName = "Noel";
console.printf("Hello, my name is %s\n", firstName);
console.printf("%s is learning how to write Java\n", firstName);
console.printf("%s can code in Java!", firstName );
2 Answers
Antonio De Rose
20,885 Points//question 1
String firstName = "Noel";
//question 2
console.printf("Noel can code in Java!");
//question 3, replace the 2 with 3
console.printf("%s can code in Java!", firstName );
//why the below 2, take it off
console.printf("Hello, my name is %s\n", firstName);
console.printf("%s is learning how to write Java\n", firstName);
//note, you have to only action straight to the question