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 trialJami Schwarzwalder
17,961 Pointsstring formatter
Do you have to use a %s, or will %d work? Could i substitute any letter? It passed the exercise, but programming mentor said I shouldn't be able to do that.
// I have setup a java.io.Console object for you named console
String firstName = "Jami";
System.out.printf("%d can code in Java!", firstName);
1 Answer
Lee Reynolds Jr.
5,160 PointsYou can't substitute any letter into the examples. You'll learn why in later lessons but the letter that follows the "%" sign does matter to Java. It just happens that in this case you are able to but the "d" stands for decimals if I'm not mistaken and the "s" for string.