标签:
Description
Input
Output
Sample Input
Sample Output
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 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]!=‘\0‘) ++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 }
标签:
原文地址:http://www.cnblogs.com/wangmengmeng/p/4555203.html