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 trialSyr Tyce
Courses Plus Student 1,015 PointsLast step of last lesson, unable to print out the formatted string
I'm unable to print out the formatted string in the last lesson and the compiler doesn't give provide an error. The only response is "Did you use 'console.printf'..."
2 Answers
Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsNext time please add your code so we can see what you did wrong! This is the answer:
String response;
do
response = console.readLine("Do you understand do while loops?");
while(response.equalsIgnoreCase("no"));
console.printf("Because you said %s you passed the test!", response);
Syr Tyce
Courses Plus Student 1,015 PointsApologies on not printing out the code. When I typed out the question there was an option to add code and I checked that thinking the code was added.
That said I did it slightly different but I was a bit confused on where to put in the final statement. Thanks again.
// I have initialized a java.io.Console for you. It is in a variable named console. String response; boolean answer; do{
response = console.readLine("Do you understand do while loops?\n ");
answer = (response.equalsIgnoreCase("no"));
if (answer) {
console.printf("Try reviewing again.\n");
}
}while(answer); console.printf("Because you said %s, you passed the test!\n", response);
Arnav Singh
636 PointsArnav Singh
636 PointsThanx man, i also had the same problem