P5705的讨论

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

wycgamer @ 2021-04-29 20:09:17

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char a[100];
    gets(a);
    for(int i=strlen(a)-1;i>=0;i--)
        cout<<a[i];
    return 0;
}

来自一个五次WA的人的深深的绝望


by wycgamer @ 2021-04-29 20:43:19

终于对了!

感谢!


上一页 |