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 trialroshaan zafar
3,868 Pointsplease correct me
having problem in the code
String response ;
do{
response = console.readLine("Do you understand do while loops?");
if(response.equalsIgnoreCase("no"))
console.printf("Becuse you said no,you passed the test!");
}while(response.equalsIgnoreCase("no"));
2 Answers
Peter Danglay
861 PointsHere is your answer
String response;
do{
response = console.readLine("Do you understand while loops");
}while(response.equalsIgnoreCase("no"));
roshaan zafar
3,868 Pointsi have used %S and problem was resolved thanks