练习5.19

编写一段程序,使用do while循环重复执行下述任务:首先提示用户输入两个string对象,然后填出较短那个并输出它。


#include <iostream>
//#include <vector>
using namespace std;
int main()
{
    string reply;
    do{
        cout<<"输入两个string对象"<<endl;
        string str1,str2;
        cin>>str1>>str2;
        if(str1.size()>str2.size())
            cout<<str2<<endl;
        else
            cout<<str1<<endl;
        cout<<"do you want to continue"<<endl;
        cin>>reply;
    }
    while(reply[0]!='n');
    return 0;
}


posted @ 2014-12-25 15:26  Song_4  阅读(151)  评论(0编辑  收藏  举报