Hello and welcome to cplusplus.com! When posting code, please use the <> button to the right of the text box so that it becomes highlighted.
When asking questions, it is best to give an explanation of what your program is currently doing and what you expected it should have done. This helps the helpers to guide you towards your expectations instead of wandering aimlessly around only to circle back to your expectations.
You have an if statement on line 13 that says if (place == "Las Vegas"). You will never trigger this if you use formatted input operation with cin (cin >> place;). You must instead use an unformatted input operation such as, getline(cin, place);
You probably meant to use == instead of = for if (time = 1210) {. Also the "You have selected 12:10..." is missing cout.
Appreciate it, im struggling to get it to trigger the if statement if they input 1210 with cin >> time; It doesnt do anything and then closes if you repeatedly press enter/ however i would like it to check the if statement and then ask for confirmation..
cout << "Please select your destination. Using Correct Capitalization"
You are leaving too much to the user entry being exactly correct. Unless your assignment specifically asks you to do it this way you should try to get users to input numbers at this stage corresponding to locations.
Even then you'd have to do some input validation to make sure the numbers entered are within range, no leading/lagging characters etc and then proceed with the rest of the program