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 trial

Java Java Basics Getting Started with Java IO

Says I am not passing parameter

Says I am not passing firstName parameter to printf function?

IO.java
// I have imported java.io.Console for you.  It is a variable called console.
String firstName = "Elijah";
  console.readLine("Elijah");
String lastName;
lastName = console.readLine("Florence");
console.printf("First name: %s", firstName);

1 Answer

You are supposed to set the String variable to the user's name using console.readLine(); You do that for their first and last name. then you add a printf line repeating their first name and then their last name. Like this:

String firstName = console.readLine("What is your first name?%n");
String lastName = console.readLine("What is your last name?%n");
console.printf("First name: %s", firstName);
console.printf("Last name: %s", lastName);

When you do console.readLine it is a prompt that allows a user to enter in information being asked by the program, after the user enters in the information it is then stored into the variable that you set it equal to. After that you just do a printf statement that tells them what their first and last name is using the '%s' as variable place holders for the variable that you add after the comma.