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 Perfecting the Prototype Looping until the value passes

Chase Alfrey
Chase Alfrey
996 Points

String cannot be converted to boolean

If i try and follow the videos instructions, it just leads to me getting the error. How do i fix this?

Example.java
// I have initialized a java.io.Console for you. It is in a variable named console
String response;
boolean understand;
do {response = console.readLine("Do you understand while loops?");
   understand = (console.readLine("Do you understand while loops?"));
   }while (understand.equalIsIgnoreCase("yes"));

1 Answer

Hi, you have few mistakes. you dont need to create a boolean var, the question didnt asked u to do so. you didnt understand the structure of a "do while" loop. u want to keep prompting the message unless the user enetes No. the working code is:

String response;
do
{
  response = console.readLine("Do you understand do while loops?");
}
while(response == "No");

console.printf("Becuase you said %s, you passed the test!", response);

u should watch the videos again, its preety clear and u will get more knowledge on do while loops.