• hdu1062


    Text Reverse

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 11201    Accepted Submission(s): 427

    Problem Description
    Ignatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them.

     
    Input
    The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
    Each test case contains a single line with several words. There will be at most 1000 characters in a line.
     
    Output
    For each test case, you should output the text which is processed.
     
    Sample Input
    3 olleh !dlrow m'I morf .udh I ekil .mca
     
    Sample Output
    hello world! I'm from hdu. I like acm.
    Hint
    Remember to use getchar() to read '\n' after the interger T, then you may use gets() to read a line and process it.
     
    1. #include <iostream>
    2. #include <cstring>
    3. using namespace std;
    4. char str[1001];
    5. int main()
    6. {  
    7.  int i, len, n, j;  
    8.  scanf("%d", &n);   
    9.  getchar();  
    10.  while (n --)  
    11.  {       
    12.   gets(str);
    13.   len = strlen(str);   
    14.   for (i = 0; i < len; ++i)
    15.   {          
    16.    if (str[i]== ' ')    
    17.    {              
    18.     j = i - 1;          
    19.     while (str[j] != ' '&&j >=0)  
    20.     {                
    21.      printf("%c", str[j]);   
    22.      j --;           
    23.     }              
    24.     printf(" ");       
    25.    }          
    26.    else if (i == len - 1)      
    27.    {            
    28.     j = i;      
    29.     while (str[j] != ' '&&j >=0)       
    30.     {               
    31.      printf("%c", str[j]);       
    32.      j --;         
    33.     }        
    34.    }     
    35.   }     
    36.   printf("\n");  
    37.  } 
    38.  return 0;
    39. }     
     
     
     
     
  • 相关阅读:
    2016.04.18 view中嵌套两个居中的 lable
    2016..4.06 点菜系统案例:利用文本框的inputView和inputAccessoryView串联UIPickerView、UIDateP...
    2016.04.06 UITabBar+badge.h
    2014 .04 .06 navbar
    2016-03-17 leaks 内存泄露
    2016-03-16 sdwebimage
    2016-03-16 字符串的包含
    2016-03-16 键盘的弹出与收起
    2016-03-15 nsfoundation 数组 字典 nsrange等
    2016-03-15 uitextview placehold
  • 原文地址:https://www.cnblogs.com/Deng1185246160/p/2952881.html
Copyright © 2020-2023  润新知