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

Chase Setser
Chase Setser
3,802 Points

Combining string variables inside printf?

Hello, is it possible to do something like this?

IO.java
// I have imported java.io.Console for you.  It is a variable called console.'

String firstName = console.readLine("What's your first name? ");

String lastName = console.readLine("What's your last name? ");

console.printf("First name: %s. Last name: %s", firstName, lastName);
Simon Coates
Simon Coates
28,694 Points

most methods in java don't support arbitrary numbers of parameters, but the language does have some support for this. so printf methods (which exist on a lot of things that output strings) are something of an odd case.

1 Answer

Simon Coates
Simon Coates
28,694 Points

The printf is fine. If you want to see output at the challenge, use something like the following, since you don't have access to the console in the challenge.

String firstName = "d";
String lastName = "e";
System.out.printf("First name: %s. Last name: %s", firstName, lastName);

clicking on preview gets you: First name: d. Last name: e