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

Is there something wrong with the treehouse software?

Its saying that I'm wrong, but after checking the editor I saw that I accomplished the task. Check out the screenshot

Name.java
// I have setup a java.io.Console object for you named console
String firstName="yourName";
console.printf("Toni");
console.printf("canCodeInJava");

Which task did you accomplish?

It was the 3rd challenge of Intro to Java track path. I noticed other challenges not compiling as well, no matter how many times i checked the code and took even a picture of the instructor's code and still nothing. I would keep getting a weird error message below the console section. It's very disconcerting especially someone that is new and has spent hours a day really trying to learn this language.

1 Answer

Steven Parker
Steven Parker
229,732 Points

The instructions ask you to Call the printf method on the console object and make it write out "<YOUR NAME> can code in Java!"

They are looking for the expected output, which would include spacing, capitalization and punctuation. But those aspects are missing or different in the string shown above.

If you revise your strings to output the sentence just as shown you will pass the second task.

Then for the 3rd, task you need to output the contents of the "firstName" variable instead of a literal string.