【清华大学考研机试题】反序输出

版权声明:假装有个原创声明……虽然少许博文不属于完全原创,但也是自己辛辛苦苦总结的,转载请注明出处,感谢! https://blog.csdn.net/m0_37454852/article/details/88312611

原题链接

#include <algorithm>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
using namespace std;

int main()
{
    char str[10];
    while(scanf("%s", str) != EOF)
    {
        reverse(str, str+4);
        printf("%s\n", str);
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/m0_37454852/article/details/88312611