发布时间:2015-03-12 15:09:58
1、首先要加入头文件:#include <algorithm>2、将string字母转换为小写代码:点击(此处)折叠或打开void strToLower(string &str){ transform(str.begin(),str.end(),str.begin(),tolower);}3、比较两个字符串的大.........【阅读全文】
发布时间:2015-03-12 14:59:23
点击(此处)折叠或打开#include <string>#include <iostream>#include <algorithm> #include <functional>using namespace std;void removeAll(string &str,char c){ stri.........【阅读全文】