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

Kevin Townson
Kevin Townson
1,137 Points

my code is not working help please........

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

import java.io.Console;

public class Introductions {

public static void main(String[] args) {
    Console console = System.console();
    // my code is below
  String firstName = "Kevin";
    console.printf("Hello, my name is %s", firstName);

} }

2 Answers

samiff
samiff
31,206 Points

Are you trying to complete the code challenge? If so, the instructor has already created the 'console' object and you don't need to create a class.

Grigorij Schleifer
Grigorij Schleifer
10,365 Points

Hi Kevin,

your code is fine but see the comment Craig left for us

// I have setup a java.io.Console object for you named console
// the code is already implemented into the challenge and you don´t need to write it by your own
import java.io.Console;

public class Introductions {

// so Craig imported the Console class
// and named the object of the Console class "console"
// now you can use console.printf without importing something
} 

Grigorij