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 trialachilles serrano
112 PointsIntroductions printing name all uppercase
why is my name being printed in all uppercase import java.io.Console;
public class Introductions {
public static void main(String[] args) {
Console console = System.console();
// Welcome to the Introductions program! Your code goes below here
String firstName = "Achilles";
console.printf("Hello, my name is %S\n", firstName);
console.printf("%S is learning how to write Java\n", firstName);
} }
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, achilles serrano! The simple answer is: because you told it to. When you use %S
it converts the string to all upper case. What you're looking for is %s
(lower case), which leaves the string as-is.
Hope this helps!