cin遇到空格会停止
使用:getline(cin, s)
例如: i am a boy getline是碰到终止符才停止
使用:while(cin >> s){}
去除某个字符可以用fstream
或者if判断
if(0 < a && a < 10)