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 trialJanson Roberts
5,071 PointsI'm a little lost with this code challenge???
Could someone help with this code challenge? Do I need another bool variable to run while the level is being played? What am I missing?
bool levelFinished;
int rubies = 0;
int rubyReward = 7;
int rubyMax = 50;
while (rubies < rubyMax, levelFinished = false){
rubies + rubyReward;
}
1 Answer
clintbarron
11,943 PointsYou're not assigning the new value in your while loop. Try:
rubies += rubyReward
Janson Roberts
5,071 PointsJanson Roberts
5,071 PointsDidn't work. Here's the task:
"Create a while loop that will run as long as rubies is less than rubyMax. During each iteration of the loop, increment rubies by rubyReward. When the loop completes, assign a value of true to levelFinished.
Thanks