Hello I'm new to c++, I'm creating a reservation system for my school project this is kinda a dumb question where should I put break; due to user invalid input. Can't post the whole system because it's too long here is the link below. Thanks
input validation is usually
do
prompt
get value as string
validate input
while (not valid)
the only time you would break or do something odd is like a password, where you might have 3 tries then lock them out or whatever. Do you need that idea?