今天在复习C++的时候偶然看到这个题目,要求是使用C++完成大写转换然后存放到vector中去:
这里也是使用了一个string库,但不知道为什么string库里并没有自带大小写转化,只得使用algorithm库的transform函数来进行大小写转化
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>
using namespace std;
int main()
{string s;cout<<" please enter a sreies of words to build a sentence\n"<<endl;vector<string> text;cin>>s;transform(s.begin(), s.end(), s.begin(), ::toupper); cout<<"now the transform is "<<s<<endl;}