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 trialAnurag Gracian
315 Pointsi do not know why my string variable is not working
i defined the string variable. but the code is not working
// I have setup a java.io.Console object for you named console
String firstName = "Anurag";
console.printf("%s\n, firstName");
}
}
1 Answer
Michael Liebegott
3,960 PointsHey there Anurag!
Your code is almost perfect.
The console.printf() function requires one extra argument for every formatter you pass into it. Take this as an example:
console.printf("%s %s %s %s");
//This will throw an error.
You have 4 string formatters, which means you must have 4 strings (either as literals or variables) passed into the method.
The code, when properly written, would look like this:
String one = "one";
String two = "two";
String three = "three";
String four = "four";
console.printf("%s %s %s %s", one, two, three, four);
//The console will display: one two three four
For your code specifically, you need to remove "firstName" from the string and rewrite it like so:
// I have setup a java.io.Console object for you named console
String firstName = "Anurag";
console.printf("%s\n", firstName);
}
}
This is telling the printf() function that you have a string ("%s\n") with one variable/literal being passed into it (firstName).
Hopefully this helps. :-)