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 trialDonald Meeks
562 PointsIf statement
How is this code wrong?
int numberOfPeople =3;
if(4<numberOfPeople){ console.printf("Your table is ready\n");}
2 Answers
Patrik Horváth
11,110 Pointsyou have to use " < " not ">" a and with this order first : "numberOfPeople" then "4", if you switch it it will no works ( in real life it will works but in TeamTreeHouse nop ).
use
int numberOfPeople = 3;
if(numberOfPeople < 4) {
console.printf("Your table is ready");
}
Donald Meeks
562 PointsThank you I was so confused lol
Patrik Horváth
11,110 Pointsthis is reason why you should use your own Workspace on your for example IntelliJ because this error check in teamtreehouse is not perfect also in RealLife Console no works in Real IDE :) in real IDE you have to use System