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

Answers portion codes - confused

I'm just confused if i need to input the complete codes like these:

import java.io.Console; public class Name { public static void main(String[] args) { } }

or not, they error in the preview mode and I cannot proceed in the next step. or I'll just place the direct answer for the checker to work?

Name.java
// I have setup a java.io.Console object for you named console
//import java.io.Console;

public class Name {

    public static void main(String[] args) {
        Console console = System.console();
        String firstName = "Wayne Ponce";
        // Welcome to the Introductions program!  Your code goes below here
        //console.printf("Hello, my name is Craig");
  }
}

1 Answer

ahh, I have already figured it out, so you should place the codes directly without placing the other required codes in making files in java