码迷,mamicode.com
首页 > 其他好文 > 详细

华为OJ-句子逆序

时间:2018-01-05 01:24:00      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:main   get   har   stdio.h   print   gpo   int   华为   pre   

#include <stdio.h>
#include <string.h>
int main()
{   
    char str[1000];
    char *p;
    gets(str);
    while(p=strrchr(str,‘ ‘))
 {
        printf("%s ",p+1);
        *p=‘\0‘;
    }
    printf("%s",str);
    return 0;
}

  

华为OJ-句子逆序

标签:main   get   har   stdio.h   print   gpo   int   华为   pre   

原文地址:https://www.cnblogs.com/zaijiefangbeidawang/p/8196608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!