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 Introduction to Operators and Conditionals Review IF / ELSE

Rosh Canlas
Rosh Canlas
2,666 Points

Need help with IF ELSE statements ! :)

How do I set "hasBonus" to false into the "if (powerPoints < 3)" and set "hasBonus" to true in the "else" statement? I'd really appreciate the help. I've been stuck with this for too long. Thanks.

-Rosh

variable_assignment.mm
bool hasBonus;
int powerPoints;
powerPoints = 0;
if (powerPoints < 3)
{
  hasBonus = 5 == 6;
}
else
{
  hasBonus = 5 == 5;
}

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

The great news here is that it seems you truly understand "truthy" and "falsey"! So kudos! :thumbsup: But what it wants is for you to explicitly set them to the keywords true and false. Take a look and see how incredibly close you are! Note: this is just your code slightly modified.

bool hasBonus;
int powerPoints;
powerPoints = 0;
if (powerPoints < 3)
{
  hasBonus = false;
}
else
{
  hasBonus = true;
}

Hope this helps!