Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

tidjanitraore
120 PointsJava Basic
Output a sentence that takes both the name and past tense verb using a single statement. It should look like this: name really past tense verb this coding exercise.
I got stuck. Can you guys please help me☺?
// 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("Enter a verb here: ");
console.printf("%s really %s this coding excercise", name, adjective);
2 Answers

Gaspar Santiago
3,377 PointsIf you were declaring the variable name, you wouldn't declare it with the sentence "What is your name?". You'd declare it with an actual name, which means in this case, "what is your name" should be on a separate line: System.out.println("What is your name?"); Declare the String variable name like so: String name = ""; < Leave it empty
Then when you run the program, console.readline() will take in whatever name you type in. The parameter for console.readLine() will be the String variable "name" which you will put in the parenthesis of console.readLine as its parameter. console.readLine(name); To check for this you can run: System.out.println("You entered " + name); Then the name you entered will be verified.
Apply the same logic for pastTenseVerb =D
Good Luck!

Ryan Custodio
5,626 PointsHi. I'm just new here and I also got stuck on this but I manage to come up with the right answer.
String name = console.readLine("%s");
String pastTenseVerb = console.readLine("%s");
console.printf("%s really %s", name, pastTenseVerb);
I hope it helps.