c++,编译器可以过,为什么这里过不了??弱鸡求帮助!

P5705 【深基2.例7】数字反转

chenxi2021 @ 2021-08-12 15:11:59

#include <bits/stdc++.h>
using namespace std;
int main()
{
    char a[1000];
    cin>>a;
    strrev(a);
    cout<<a;
    return 0;
}

by yuchenren @ 2021-08-12 15:14:06

https://baike.baidu.com/item/strrev/5522679?fr=aladdin

第一行


by chenxi2021 @ 2021-08-12 16:00:04

@任宇宸 谢谢


|