今天在复习C++的时候偶然看到这个题目,要求是使用C++完成大写转换然后存放到vector中去:
这里也是使用了一个string库,但不知道为什么string库里并没有自带大小写转化,只得使用algorithm库的transform函数来进行大小写转化
#include#include #include #include using namespace std; int main() { string s; cout<<" please enter a sreies of words to build a sentencen"< text; cin>>s; transform(s.begin(), s.end(), s.begin(), ::toupper); cout<<"now the transform is "< 欢迎分享,转载请注明来源:内存溢出
评论列表(0条)