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 trialArjun Parashar
Courses Plus Student 2,150 PointsHi Can anyone help me with this code challenge? I am a bit confused.
I am not able to figure out what I am doing wrong as I am somewhat getting confused.
bool hasBonus;
int powerPoints = 5;
if ( powerPoints <= 3 ) { hasBonus = false }
else ( hasBonus = powerPoints }
1 Answer
Mike Gilroy
7,411 PointsHi Arjun, looks like you're just missing a couple of semi-colons and have used a parentheses ( instead of a curly brace { on the last line. So not to forget to put semi-colons at the end of code statements in future it's good practice to start the contents of your if/else blocks on new lines, something like below:
bool hasBonus;
int powerPoints = 5;
if (powerPoints <= 3) {
hasBonus = false;
} else {
hasBonus = powerPoints;
}