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 trialDaniel Krakani
1,122 PointsJAVA ANDROID DEVELOPMENT (Challenge 1 (2nd question )) Not Working
// I have setup a java.io.Console object for you named console
String firstName = "DAN";
console.printf("My name is %s/n");
5 Answers
Craig Dennis
Treehouse TeacherI see two quick things. Your slash is going the wrong way it is \n
. Also don't forget to pass in your firstName variable to the printf
function so it knows what to replace the %s
with.
Daniel Krakani
1,122 PointsI switched from Mozilla to Explorer and It works fine now. I refresh and it didn't work again Thanks
Daniel Krakani
1,122 PointsString firstName = "Dan"; console.printf("%s\n", firstName);
Bummer! Check the spelling of your argument to the printf method
Craig Dennis
Treehouse TeacherThe challenge instructions read:
Call the printf function on the console object and make it print out "<YOUR NAME> can code in Java!"
Your code prints out "<YOUR NAME>".
Daniel Krakani
1,122 PointsThanks , It was my email.
Craig Dennis
Treehouse TeacherHa Phew! I was getting really bad Deja Vu! ;)
Daniel Krakani
1,122 Pointshaha