1 2 3 4 5 6 7 8 9 10 11 12 13 14 | //第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; } |