cout<<"What HTH level are you (1,2,3): ";
cin>>hthLevel;
switch(hthLevel){
case 1:out<<"Hand to hand level= 1"<<endl;break;
case 2:out<<"Hand to hand level= 2"<<endl;break;
case 3:out<<"Hand to hand level= 3"<<endl;break;
default: cout<<endl<<"Incorrect";
}
Need to know how to loop this so if 1,2 or 3 is entered it continues but if an incorrect value is entered it loops and repeats the switch statement again untill the correct value is entered???????
please help