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 IO

I do not understand what i am doing wrong with this problem.

Can someone please give me the correct way to type this?

IO.java
String firstName = console.readLine("cory");
String lastName = console.readLine("Brown");
console.printf("First name:  %s");

1 Answer

Sean M
Sean M
7,344 Points

Hello. I have solved this using a Java IDE. I hope this helps.

    String firstName = "Cory";
    String lastName = "Brown";

    System.out.printf("FirstName: %s",
            firstName);

first name is a string named cory. last name is a string named brown.

System.out is used to print the method. print f is used, opposed to println, because you are referencing the first name.

%s means insert first name here, making sure to include firstName outside the quotations.