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 trialRicardo Ribeiro
2,414 Pointsall the print function on the console object and make it print out "<YOUR NAME> can code in Java!"
Hello, im trying to print out my name in this way: console.printf("%s", firstName);
but it dosent work, what is wrong??
1 Answer
Gloria Dwomoh
13,116 PointsRight now, this
console.printf("%s", firstName);
will give you just your first name as output. The challenge though wants you to print this...
"<YOUR NAME> can code in Java!"
which is in other ways represented as
"%s can code in Java!"
I hope this helps
Ricardo Ribeiro
2,414 PointsRicardo Ribeiro
2,414 Pointsthanks very mutch i totaly forgot the rest hehehe