Leetcode 444.反转字符串

Leetcode 444.反转字符串_第1张图片

#include
#include
using namespace std;
#include

const int N=10010;
char a[N];
int main(){
    int n;
    cin>>n;
    for(int i=0;i<n;i++) cin>>a[i];
    char temp;
    for(int i=0,j=n-1;i<j;i++,j--){
        temp=a[i];
        a[i]=a[j];
        a[j]=temp;
    }
    for(int i=0;i<n;i++) cout<<a[i]<<' ';
    return 0;

}

你可能感兴趣的:(leetcode,c++)