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 trialRebecca Battams
2,604 PointsJava 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.
public class Name
{
public static void main (string [] ajrgs)
{
console.readline.printin(firstName ="Becky" );
}
}
1 Answer
Alexander Nikiforov
Java Web Development Techdegree Graduate 22,175 PointsIt 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")
:
- It is valid to write:
console.readLine()
- It is valid to write:
console.printf()
- It is valid to write:
String firstName;
firstName = "Becky";