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 trialJames Young
775 PointsPlease help
Hey guys,
I am so confused with this, can someone please help me out and offer some feedback? Thank you all!
/* So the age old knock knock joke goes like this:
Person A: Knock Knock.
Person B: Who's there?
Person A: Banana
Person B: Banana who?
...as long as Person A has answered Banana the above repeats endlessly
...assuming the person answers Orange we'd see
Person B: Orange who?
...and then the punchline.
Person A: Orange you glad I didn't say Banana again?
(It's a really bad joke that makes it sound like "Aren't you glad I didn't say Banana again?")
Let's just assume the only two words passed in from the console from Person B are either banana or orange.
*/
// ====BEGIN PROMPTING CODE====
// Person A asks:
console.printf("Knock Knock.\n");
// Person B asks and Person A's response is stored in the String who:
String who = console.readLine("Who's there? ");
// Person B responds:
String answer = console.readLine("banana");
console.printf("%s who?\n", who);
// ==== END PROMPTING CODE ====
3 Answers
Richard Ling
8,522 PointsHi James,
This one actually really confused me too, so you're not alone! I guess I just wasn't very familiar with the joke haha. I ended up with:
// ====BEGIN PROMPTING CODE====
String who = "";
do {
// Person A asks:
console.printf("Knock Knock.\n");
// Person B asks and Person A's response is stored in the String who:
who = console.readLine("Who's there? ");
// Person B responds:
console.printf("%s who?\n", who);
} while(who.toLowerCase() == "banana");
// ==== END PROMPTING CODE ====
Basically, the line asking "Who's there?" is to be repeated as long as the answer given is "banana". The Do-While repeats that line until the While condition is no longer true.
So to start, the variable who is empty, the loop starts and the user is prompted for input. They enter banana, the while condition checks to see if the lower case version of their input is "banana". If it is, is repeats the code; if not, the loop ends.
:)
I left one line outside the loop, so have edited to move it back in :P
James Young
775 PointsHey Rich,
Thank you so much for all of your help, I really appreciate it. Its a little confusing but I think after some practice I will get the hang of it...Thank you again!
Best wishes, James
James Young
775 PointsThank you for the tip Craig, I really appreciate it!... Keep up the great work, you are awesome!!
Best wishes james
Craig Dennis
Treehouse TeacherCraig Dennis
Treehouse TeacherPsst...use
who.equalsIgnoreCase("banana")
Richard Ling
8,522 PointsRichard Ling
8,522 PointsHaha, oops, yes quite right Craig, thanks for the heads up ;)