题解 | #字符串反转#

字符串反转

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

#include <stdio.h>
#include <string.h>

int main() {
    char str[1002];
    while (scanf("%s", str) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 
        int cnt = strlen(str);
        //printf("%s %d\n", str, cnt);
        for(int i = cnt - 1; i >= 0; i--)
        {
            printf("%c", str[i]);
        }
            printf("\n");
    }
    return 0;
}

全部评论

相关推荐

孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
11-05 07:29
贵州大学 Java
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务