16,548
社区成员




while(getline(cin,tmp))
{
if(0 == tmp.length())
{
break;
}
cout<<tmp<<endl;
}
template<class CharType, class Traits, class Allocator>
basic_istream<CharType, Traits>& getline(
basic_istream<CharType, Traits>& _Istr,
basic_string<CharType, Traits, Allocator>& _Str
);