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 Strings, Variables, and Formatting

Now replace <YOUR NAME> in the console.printf expression with the firstName variable using the string formatter.

how do you do it?

Name.java
// I have setup a java.io.Console object for you named console
String firstName= "star";
console.printf("s% can code in java!");

2 Answers

J.D. Sandifer
J.D. Sandifer
18,813 Points

Dane's answer gives all the information needed, but make sure you follow the challenge directions, too. The end result should be printing "<Your Name> can code in Java!" like this:

Name.java
// I have setup a java.io.Console object for you named console
String firstName = "star";
console.printf("%s can code in Java!", firstName);
Dane Parchment
Dane Parchment
Treehouse Moderator 11,076 Points

Completely forgot about the actual challenge...oops.

Dane Parchment
MOD
Dane Parchment
Treehouse Moderator 11,076 Points

You have the syntax for your printf statement wrong it supposed to look like this:

console.printf("%flag", variableThatFlagPointsTo);

So with that in mind see if you can solve it, if not the answer is:

console.printf("%s", firstname);