标签:statistic params page namespace 字符 out color names 之间
输入一个句子(一行),将句子中的每一个单词翻转后输出。
hello world
olleh dlrow
1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 #include<cmath> 5 using namespace std; 6 string a; 7 int z=0; 8 int main() 9 { 10 getline(cin,a); 11 a=a+‘ ‘; 12 int l=a.length(); 13 for(int i=0;i<=l+2;i++) 14 { 15 if(a[i]==‘ ‘) 16 { 17 for(int j=i-1;j>=z;j--) 18 { 19 cout<<a[j]; 20 } 21 cout<<" "; 22 z=i+1; 23 } 24 } 25 return 0; 26 }
标签:statistic params page namespace 字符 out color names 之间
原文地址:http://www.cnblogs.com/zwfymqz/p/6515892.html