Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mustafa Khan
6,224 PointsChallenge Task 3 of 3 Inside your if block, after printing, exit the program.
I used the exit property, when the function runs. If it doesn't run, your table is ready is printed out, so why is it wrong?
int numberOfPeople = 3;
if (numberOfPeople < 3) {
System.exit(0);
}
console.printf("Your table is ready");
1 Answer

Oszkár Fehér
Treehouse Project ReviewerHi Mustafa. in the if block the "numberOfPeople" should be less then 4 and if it's true, print.
int numberOfPeople = 3;
if (numberOfPeople < 4) {
console.printf("Your table is ready");
}
Now the empty line it's for the third task. I hope it helps you out. Happy coding