using namespace std; int main() { string a; getline(cin, a); // 能读空格 for(char c : a) cout << c << ‘ ‘; //char c : a可以快速迭代 }