Simply.. Help with Code Tags C++ Syntax (Toggle Plain Text) //...char rep='n';//display the menu and get user's choicewhile(tolower(rep)=='n'){ //...Menu cout<<"repeat? [y/n] : "; cin>>rep;}return 0; //bye.. //... char rep='n'; //display the menu and get user's choice while(tolower(rep)=='n') { //...Menu cout<<"repeat? [y/n] : "; cin>>rep; } return 0; //bye..
//...char rep='n';//display the menu and get user's choicewhile(tolower(rep)=='n'){ //...Menu cout<<"repeat? [y/n] : "; cin>>rep;}return 0; //bye..