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 trialJakub Hejný
Courses Plus Student 317 PointsError Class names
I get error in console: Class names, TreeStory are only accepted if annotation processing is explicitly requested. I aslo get error: Treestory.java: 15:error: îdentifier expected, console.printf("%s is very %s", name, adjective); My code is
import java.io.Console;
public class TreeStory {
public static void main(String[] args) {
Console console = System.console();
/* Some terms:
noun - Person, place or thing
verb - An action
adjective - A description used to modify or describe a noun
Enter your amazing code here!
*/
String name = console.readLine("Enter your name: ");
String adjective = console.readLine("Enter an adjective: ");
console.printf("%s is very %s", name, adjective);
}
2 Answers
Alejandro Crespo
6,628 PointsI don't see an error. Did you save the changes before running? Make sure you press control+s to make sure any change you made sticks. Only other possible error, is that you're missing a bracket at the bottom, but I think that has to do with the way you displayed your code here. Can you confirm all your brackets are in place?
Naphtali Matione
5,224 PointsHi Jakub, At times the system`s code evaluator is tricky in pointing to you what the exact error is, so you will need to look closely at your syntax in order to identify the real problem if your code does not pass and the error message does not seem to make sense. In your block of code i see nothing wrong except that there are three spaces instead of two in the first console.readLine code.