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

将字符串反转,但单词不倒置2。Right here waiting for you! -> you! for waiting here Right

时间:2014-07-14 19:42:46      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   io   div   

//将字符串反转,但单词不倒置。Right here waiting for you! -> you! for waiting here Right
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>

int main() 
{
    char str[255];
    char result[255];
    int length;
    int i,j,k = 0;
    int wordLen = 0;

    gets(str);
    length = strlen(str);

    for (i = length-1; i >= 0; i--)
    {
        if (str[i] ==  )
        {
            if (wordLen != 0)
            {
                for (j = i + 1; j <= i + wordLen; j++)
                {
                    result[k++] = str[j];
                }
            }
            result[k++] =  ;
            wordLen = 0;
        }
        else
        {
            wordLen++;
        }
    }
    if (wordLen != 0)
    {
        for (j = 0; j < wordLen; j++)
        {
            result[k++] = str[j];
        }
    }
    result[k] = \0;
    printf("%s", result);
    return 0;
}

将字符串反转,但单词不倒置2。Right here waiting for you! -> you! for waiting here Right,布布扣,bubuko.com

将字符串反转,但单词不倒置2。Right here waiting for you! -> you! for waiting here Right

标签:style   blog   color   for   io   div   

原文地址:http://www.cnblogs.com/Camilo/p/3842842.html

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