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 trialJan-Philippe Emmanuel Rasay Guerrero
1,567 PointsJava Basics
Add an if statement to see if there are less than 4 people. Then write out to the console, “Your table is ready”
2 Answers
Steve Hunter
57,712 PointsHi there,
Whilst the challenge question's grammar is a challenge in itself (fewer than 4 people, not 'less'!) you're asked to create an integer called numberOfPeople
and set its value to 3.
Then, you write a test to see if numberOfPeople
is less than 4 and output the string requuested. That can look like:
int numberOfPeople = 3;
if(numberOfPeople < 4){
console.printf("Your table is ready");
}
The if
statement takes a conditional comparison inside brackets, in this case we use the less than sign to see if numberOfPeople
is less than 4. If it is, and it is, the next lines inside the curly braces are run.
I hope that makes sense!
Steve.
Jan-Philippe Emmanuel Rasay Guerrero
1,567 PointsI messed up when coming to curly braces, thanks!
Steve Hunter
57,712 PointsNo problem - glad you got it fixed!