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 trialMark Worrall
538 PointsReally not understanding what I have done wrong here! please help.
The error seems to occur at the end of console.printf but I have tried amending it in a few ways with no success.
// I've imported java.io.Console for you. It is stored in a variable called console for you.
String name = console.readLine("What is your name?: ");
String pastTenseVerb = console.readLine("Give me a past tense verb: ");
console.printf = ("Hey, did you hear that %s totally %s that guys house!!", name, pastTenseVerb);
3 Answers
izqcabvvli
4,111 PointsHey Mark, when we call a method we don't use a equal sign or "=" to tell the method to perform a certain task. Rather it is directly written the way Jeremy has written. The "=" sign is used to assign values to variables and strings. If you don't know what method means then check the following link for its definition. http://mathbits.com/MathBits/Java/Methods/Lesson1.htm
Here printf is a method called of the console.
Jeremy Hill
29,567 PointsRemove the " = " after the "printf" - it shouldn't be there. It should be:
console.printf("Hey, did you hear that %s totally %s that guys house!!", name, pastTenseVerb);
Mark Worrall
538 PointsThanks guys, realized my ( silly ) mistake shortly after! Thanks for the help.
Jeremy Hill
29,567 PointsJeremy Hill
29,567 PointsRemove the '=' after the "printf" - it shouldn't be there.