reverse()反转字符串的正确使用方式

1.reverse函数反转string
#include
#include
#include
using namespace std;

int main() {

    string N;
    cin>>N;
    reverse(N.begin(), N.end());
    cout< }
1
2
3
4
5
6
7
8
9
10
11
12
2.reverse函数反转字符数组
#include
#include
#include
using namespace std;
int main() {
    char a[101];
    cin.getline(a,sizeof(a));
    int m=strlen(a);
    reverse(a,a+m);
    puts(a);
}

你可能感兴趣的:(笔记(二))