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

Java Java Data Structures Efficiency! Menu UI

Pedro Silva
Pedro Silva
5,363 Points

How does the Quit is working?

Why the Quit command is working when used? I'm reading my code but i dont get why in the switch statement the quit is quitting the program

1 Answer

Do loop runs at least one time. Then if you type "quit", it will check in ---> while(!choise.equals("quit")); and will come to do loop again. With switch, program will know that our input is quit and case "quit" will be executed(Loop will be breaked and program will stop running). Hope it helps