reverse对数字和字符串的倒置

前端之家收集整理的这篇文章主要介绍了reverse对数字和字符串的倒置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

数字:

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
    vector<int>a;
    for(vector<int>::size_type i=0;i<=9;i++)
       a.push_back(i);
    for(vector<int>::size_type k=0;k<=9;k++)
        cout<<a[k];
    cout<<endl;
    reverse(a.begin(),a.end());
    for(vector<int>::size_type i=0;i<=9;i++)
        cout<<a[i];
    return 0;

}
运行如下:



字符串:

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
   string str;
   getline(cin,str);;
   reverse(str.begin(),str.end());
   cout<<str;
}


运行如下:

原文链接:https://www.f2er.com/javaschema/286313.html

猜你在找的设计模式相关文章