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

Jason Scruggs
Jason Scruggs
567 Points

Using the console's printf method, display a message that says, "First name: ", followed by the first name that the user

I'm not sure what I'm doing wrong here. The syntax error mentions using the %s format but I'm obviously arranging the syntax incorrectly. Any help is greatly appreciated.

IO.java
// I have imported java.io.Console for you.  It is a variable called console.
String firstName  = console.readLine("What is your name?  "); 
String lastName = console.readLine("What is your last name?  ");

1 Answer

Zhaopeng Wang
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Zhaopeng Wang
Full Stack JavaScript Techdegree Graduate 32,210 Points
  • I would suggest you double check the printf documentation online, to use printf, you can use %s to indicates that you are inserting a string at that location. For your example, it would be
// I have imported java.io.Console for you.  It is a variable called console.
String firstName = console.readLine("What is your first name");
String lastName = console.readLine("What is your first name");
console.printf("First name: %s",firstName);
console.printf("Last name: %s",lastName);
Jason Scruggs
Jason Scruggs
567 Points

After reading your answer I realized that my $s was outside of the double quotes. Thanks for your help!