how to get back to the menu

Hi, so i am creating a nested menu using lots of if statements and switchs, once the user gets through all the options, how can i get them back to the main menu. I know would be using some type of loop, but not sure how to to implement it. Below is a condensed version of my menu that i will be using

Thanks for your help

1
2
3
4
5
6
7
8
9
10
11
12
cout<<"Welcome to the conference booking system:\n\n";
				cout<<"Option 1: Book A Seat\n";
				cout<<"Option 2: View Seating Plan\n";
				cout<<"Option 3: Exit\n\n";
				cout<<"Please choose an option: "; 
				cin>>choice;
	switch(choice)
			
			case 1:
			case 2:
			case 3: 
		default: cout<<"Thank you for using This Booking System\n";
don't worry i just realized what i need to do
Topic archived. No new replies allowed.