题解 | #字符串反转#

字符串反转

http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04

#include<stdio.h>

int main()
{
    char str[1000] = {'0'};
    while(~scanf("%s",&str))
    {
        int len = strlen(str);
        for(int i = len-1; i >= 0; i--)    //逆向循环
        {
            printf("%c",str[i]);    //逆向输出
        }
        printf("\n");
    }
    return 0;
}
全部评论

相关推荐

找不到工作死了算了:没事的,雨英,hr肯主动告知结果已经超越大部分hr了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务