数字:
#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; }运行如下:
@H_301_5@
@H_301_5@
字符串:
#include <iostream> #include <algorithm> #include <string> using namespace std; int main() { string str; getline(cin,str);; reverse(str.begin(),str.end()); cout<<str; }@H_301_5@ @H_301_5@
运行如下:
原文链接:https://www.f2er.com/javaschema/286313.html