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

Java Challenge - Declare a variable

Every time I test my code i am told that "public class Name" isn't a valid way to start the code.

IO.java
public class Name 
{
  public static void main (string [] ajrgs)
  {
    console.readline.printin(firstName ="Becky" );
  }
}

1 Answer

Alexander Nikiforov
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Alexander Nikiforov
Java Web Development Techdegree Graduate 22,175 Points

It is assumed in this challenged that you are already inside some public Class Main with public static void main method inside. So all you need to do is to write only body of the method, exactly one line:

Here let me help you with first Task:

String firstName = console.readLine();

Some comments about your code console.readline.printin(firstName ="Becky") :

  1. It is valid to write: console.readLine()
  2. It is valid to write: console.printf()
  3. It is valid to write:
String firstName;
firstName = "Becky";