题解 | #字符串反转#

字符串反转

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

#include <string.h>

int main()
{
    int i,j;
    char str[1002]={};
    fgets(str, sizeof(str), stdin);
    for(j=0;str[j]!='\n';j++)
    {
    }
    for(i=j-1;i>=0;i--)
    {
        printf("%c",str[i]);
    } 
}
全部评论
没有#include <stdio.h>哇</stdio.h>
点赞 回复 分享
发布于 03-28 21:59 广东

相关推荐

点赞 评论 收藏
分享
小红书 后端选手 n*16*1.18+签字费期权
点赞 评论 收藏
分享
评论
2
1
分享
牛客网
牛客企业服务