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 trialSorawit Kongnurat
1,284 PointsI don't know what I am doing wrong in this question or maybe I just don't understand the question.
I make the following changes and it report it back as a wrong answer.
public boolean isFullCharged() {
return mBarsCount = MAX_ENERGY_BARS;
}
while (!isFullyCharged()) {
mBarsCount++;
}
My understanding is that the boolean report back whether the mBarsCount is equal to the MAX_ENERGY_BARS or not. Then my while loop recieve that respond, it then increment the mBarsCount by one if the is the respond was false, or if the mBarsCount is not equal to the MAX_ENERGY_BARS.
Thank you
2 Answers
Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsYou have to work on your charge method not on helper method isFullyCharged:
public void charge() {
while ( !isFullyCharged() ) {
mBarsCount ++;
}
}
Sorawit Kongnurat
1,284 Points public boolean isFullyCharged() {
boolean wasFullyCharged = false;
while (!charge()) {
mBarsCount++;
wasFullyCharged = true;
}
return wasFullyCharged;
}
I tried this but it failed :(
EDIT: Look like my English failed me...
Sorawit Kongnurat
1,284 PointsSorawit Kongnurat
1,284 PointsThank You
Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsKrzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsYour welcome ;)