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 trialKeane Fraser
155 PointsNeed to write printf "First name: " followed by what was entered as a first name in the previous string variable?
Either I've written the correct answer and test is broken, which I doubt, or the quetion is too confusing for someone as new as I am.
// I have imported java.io.Console for you. It is a variable called console.
String firstName = ("Keane");
console.readLine("%s", firstName);
String lastName = ("Fraser");
console.readLine("%s", lastName);
console.printf("First name: Keane");
2 Answers
andi mitre
Treehouse Guest TeacherHey Keane, you don't need to use console.readLine() in this case, it simply wants you to print the firstName and lastName variables that you created.
// I have imported java.io.Console for you. It is a variable called console.
String firstName = console.readLine();
String lastName = console.readLine();
console.printf("First name: %s\n", firstName);
console.printf("Last name: %s\n", lastName);
Cheers
Brian Pedigo
26,783 PointsThe code should look something like the lines below this comment. I think the purpose of the two methods being used is confusing you. I think about it like this; readLine gets the input, and printf sends the output.
String fristName = console.readLine();
console.printf("Frist name: %s", fristName);