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 trialWill Hoffman
565 PointslastName challenge
Hello,
I'm having trouble passing task 4 of this challenge. It says "did you forget to pass the last name parameter function to the printf function?"
Must be missing something, but I passed task 3 which was the same thing for firstName funtion, so not sure what I've don't differently?
Thanks,
Will
// I have imported java.io.Console for you. It is a variable called console.
String firstName = console.readLine("Hi what is your name? ");
console.printf("Hi my first name is %s\n", firstName);
console.printf("%s is learning Java\n", firstName);
String lastName = console.readLine("Hi what is your last name? ");
console.printf("My last name is Hoffman", lastName);
console.printf("First name is %s", firstName);
console.printf("Last name is %s", lastName);
1 Answer
Tristan Magpantay
Full Stack JavaScript Techdegree Student 14,032 PointsLooks like it could be this line where the problem is
console.printf("My last name is Hoffman", lastName);
Will Hoffman
565 PointsWill Hoffman
565 PointsThank you!