关于如何用c++来让程序识别回车

2024年11月24日 | 分类: 【编程】
//第6题-重复输入名字.cpp
#include 
using namespace std;
int main(){
    string s;
    while(getline(cin,s)){
        for(int i=0;i<50;i++){//|
            cout<<s<<" ";//     |
        }//                    \|/
        cout<<endl;//           V
                  if(s.empty())break;
    }
    return 0;
}