简单的题用简单的方法AC #include<iostream> using namespace std; int main() { string a; getline(cin,a); for(int i=0;i<a.size();i++) { cout<<a[i]<<" "; } }