对字符串内容不是很了解,用的是视频的方法
#include<iostream> using namespace std; int main() { string a; getline(cin, a); for(char &c : a) cout << c << ' '; }