摘要: #include <iostream>#include <string>using namespace std; //去掉收尾空格string& ClearHeadTailSpace(string &str) { if (str.empty()) { return str; } str.erase( 阅读全文
posted @ 2019-10-24 15:33 gd_沐辰 阅读(5627) 评论(0) 推荐(0) 编辑