题目简单,注意输出格式即可。
#include<iostream> using namespace std; int main() { string a; getline(cin, a); for(char &c : a) cout << c << ' '; }