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 Using your New Tools Multiple Format Strings

Jr A
Jr A
571 Points

Create a new variable to store a past tense verb, so in camel case that is pastTenseVerb. Accept input from the console

String pastTenseVerb = console.readLine ("Enter an adjective:  ");  this is my response ; not sure what's it s asking. I have created the new var with string and named it pastTenseVerb in camelcase and have called the console.readLine to accept input from input

Thanks in advance

Multiple.java
// I've imported java.io.Console for you.  It is stored in a variable called console for you.
String name = console.readLine("Enter your name.  ");
String pastTenseVerb = console.readLine(); 

7 Answers

Jr A
Jr A
571 Points

Thanks in advance

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Jr A, you are very close! The method readLine needs an argument. Try using ”” or some other string.

Post back if you need more help. Good luck!!!

Jr A
Jr A
571 Points

Chris Freeman , thank you for your prompt reply

Jr A
Jr A
571 Points

String pastTenseVerb = console.readLine ("Enter an adjective:  ");  this is my answer but gives me this err message

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Using your code, this passes the first two tasks:

String name = console.readLine("Enter your name.  ");
// String pastTenseVerb = console.readLine(); 
String pastTenseVerb = console.readLine("Enter an adjective:  ");
Jr A
Jr A
571 Points

Chris Freeman , it does? Then why am I still receiving errs

Jr A
Jr A
571 Points

I'm still receiving errors . Please help! I send an email to support. Not sure whats going on!

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

This passes the entire challenge. Please comment what you error turned out to be. Remember you can look at the Preview button to see the cause of the error messages.

// I've imported java.io.Console for you.  It is stored in a variable called console for you.
String name = console.readLine("Enter your name.  ");
// String pastTenseVerb = console.readLine(); 
String pastTenseVerb = console.readLine("Enter an adjective:  ");
console.printf("%s really %s this coding exercise.", name, pastTenseVerb)
Jr A
Jr A
571 Points

// I've imported java.io.Console for you. It is stored in a variable called console for you. String pastTenseVerb = console.readLine ("Enter an adjective:  ");