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

What is the parameter to the printf function?

It's asking "Did you forget to pass the firstName parameter to the printf function?" and I can't seem to find the mistake in line 3 where it's asking me to do it

IO.java
// I have imported java.io.Console for you.  It is a variable called console.
String firstName = "Ilona";
   console.printf("Firstname: %s/n", firstName); 
   console.readLine("%s/n, firstName");
String lastName = "Sorokina";
   console.readLine("%s/n, lastName");
Tomasz Baranczuk
Tomasz Baranczuk
7,055 Points

You put the quote int the wrong place:

console.readLine("%s/n", firstName);

1 Answer

Sean M
Sean M
7,344 Points

You have entered:

console.readLine("%s/n, firstName");

But firstName should be outside the quotation marks:

console.readLine("%s/n", firstName);