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 trialVarun Biswas
Courses Plus Student 516 PointsIf I declare string noun and readline outside do loop and just call it inside do, why does it go into an infinite loop?
String noun = console.readLine("Enter a noun: ");
do
{
if (noun.equalsIgnoreCase("dork") || noun.equalsIgnoreCase("jerk") || noun.equalsIgnoreCase("stupid"))
{
console.printf("That language is not allowed. Try Again\n");
}
}
while (noun.equalsIgnoreCase("dork") || noun.equalsIgnoreCase("jerk") || noun.equalsIgnoreCase("stupid"));
1 Answer
Craig Dennis
Treehouse TeacherBecause the value is never changing, so therefore, the while condition keeps on going. It will go on forever until the condition is true
.
That make sense?
Varun Biswas
Courses Plus Student 516 PointsValue never changes inside do{} and the inside values cannot access outside values. Yeah!!! Awesome, Thanks!!
Nicholas Lim
Python Development Techdegree Student 6,055 PointsNicholas Lim
Python Development Techdegree Student 6,055 PointsThank you so much!!!! That question was killing me.