所需头文件
#include <algorithm>
string str="how are you" ;
transform(str.begin(),str.end(),str.begin(),::toupper); toupper 全转大写,tolower全转小写。
count(news.begin(),news.end(),'需要计数的字符');