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 Using your New Tools Multiple Format Strings

I dont know from where to start coding.... from import java or from console?

I am not able to get the preview of my result inspite I answer the correct code.May I know the correct code?

Multiple.java
// I've imported java.io.Console for you.  It is stored in a variable called console for you.


  {
    Console console = System.console();
    String name= console.readLine("Enter your name");
    console.printf("Name is %s",name);
  }
}

2 Answers

andren
andren
28,558 Points

As the comment at the top of the workspace states the console class is instantiated for you automatically in these challenges. Most boilerplate code is also handled automatically. All you need to enter is the code to perform the exact task the instructions specify.

If you remove the first line and only keep the second line like this:

String name= console.readLine("Enter your name");

Then you'll be able to move on to task 2.

Ok Thank you so much for the instant reply:)