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

I could not understand how to write the full code in the editor????

How can i complete this challenge????

Name.java
// I have setup a java.io.Console object for you named console
Console console = system.console();
string firstname = "Naeem";
console.printf("My name is %s",firstname);

2 Answers

First of all you have initialized variable "console" - so you do not need do it second time. Moreover class usually starts with capital letter - so please replace your "string" with "String".

The final code should looks like:

String firstName = "YourFirstName";
console.printf("%s can code in Java",firstName);

Thanks a lot buddy

Harry James
Harry James
14,780 Points

Hey Naeem!

Glad to hear Mariusz Kuligowski was able to help you with the challenge!

Be sure to mark his answer as the Best Answer so that other students know this post has been answered and so that Mariusz gets credited :)

If there's anything else, feel free to give us a shout! :D