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

Name.java

What is wrong?

Name.java
// I have setup a java.io.Console object for you named console
firstName = "Nick";
printf("%s can code in Java!", firstName);

1 Answer

A Y
A Y
1,761 Points

Nick,

You do have two little bugs here:

1) You didn't declare the firstName as String varaible. Example.java:31: error: cannot find symbol
firstName = "Nick";
^
symbol: variable firstName

Please try: String firstName = "Nick";

2) You didn't call the printf method correctly. Example.java:32: error: cannot find symbol
printf("%s can code in Java!", firstName);
^
symbol: method printf(String,String)

Please try: System.out.printf("%s can code in Java!", firstName); Or: console.printf("%s can code in Java!", firstName); if you are using "import java.io.Console;"

Here is your two code options:

1) Using System: public class Example { public static void main(String[] args) { String firstName = "Nick"; System.out.printf("%s can code in Java!", firstName); } }

2) Using Console: import java.io.Console; public class Example { public static void main(String[] args) { String firstName = "Nick"; Console console = System.console(); console.printf("%s can code in Java!", firstName); } }