题解 | #字符串反转#

字符串反转

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

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

int main() {
    char input[1002];
    scanf("%1001s",input);
    int len = strlen(input) - 1;
    while(len >= 0){
        printf("%c", input[len]);
        len--;
    }
    return 0;
}

全部评论

相关推荐

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