C++中使用cin读取一组词存入vector后将其大写打印

C++中使用cin读取一组词存入vector后将其大写打印,第1张

C++中使用cin读取一组词存入vector后将其大写打印

今天在复习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 "<					
										


					

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5692427.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存