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

iOS Objective-C Basics Practicing with Immersive Examples Immersive Examples Code Challenge

Janson Roberts
Janson Roberts
5,071 Points

I'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?

variable_assignment.mm
bool levelFinished;
int rubies = 0;

int rubyReward = 7;
int rubyMax = 50;

while (rubies < rubyMax, levelFinished = false){
  rubies + rubyReward;
}

1 Answer

You're not assigning the new value in your while loop. Try:

rubies += rubyReward
Janson Roberts
Janson Roberts
5,071 Points

Didn'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