- /*9.4修改【例9.3】,增加一个字符串输入后要求确认,以保证输入的字符串(如姓名、地址等)无误。*/
- #include<iostream>
- using namespace std;
- int main(void){
- char ch,str[255];
- do{
- cout<<"请输入一个字符串:"<<endl;
- cin.getline(str,255);
- cout<<str<<endl;
- cout<<"输入正确吗?Y or N"<<endl;
- cin>>ch;
- cin.get();//吸收输入Y or N时留下的回车
- }while(!(ch=='Y'||ch=='y'));
- cout<<"输入正确:"<<endl;
- cout<<str<<endl;
- return 0;
- }