zoukankan      html  css  js  c++  java
  • Text Reverse

    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 '
    ' after the interger T, then you may use gets() to read a line and process it. 
             

     1 #include<iostream>
     2 using namespace std;
     3 int main()
     4 {
     5     int t,i=0,j=0;
     6     char word[1000];
     7     cin>>t;
     8     getchar();
     9     while(t--)
    10     {
    11         gets(word);
    12         int i,s,p;
    13         for(i=0;i<strlen(word);++i)
    14         {
    15             s=i;
    16             while(word[i]!=' '&&word[i]!='') ++i;
    17             p=i-1;
    18             for(;p>=s;--p) cout<<word[p];
    19             if(word[i]==' ')
    20                 cout<<" ";
    21         }
    22         cout<<endl;
    23     }
    24     return 0;
    25 }
  • 相关阅读:
    mysql int类型 int(11) 和int(2)区别
    mysql 用户 登陆 权限相关
    【转】ext4+delalloc造成单次写延迟增加的分析
    write 系统调用耗时长的原因
    【转】通过blktrace, debugfs分析磁盘IO
    win7 wifi热点
    【SystemTap】 Linux下安装使用SystemTap源码安装SystemTap
    pdflush进程介绍与优化【转】
    How to find per-process I/O statistics on Linux
    oom_killer
  • 原文地址:https://www.cnblogs.com/wangmengmeng/p/4555203.html
Copyright © 2011-2022 走看看