标签:ios top tle title 长度 stat str bsp page
编写程序,读入一行英文(只包含字母和空格,单词间以单个空格分隔),将所有单词的顺序倒排并输出,依然以单个空格分隔。
I am a student
student a am I
#include<iostream> #include<cstring> #include<cstdio> using namespace std; char a[10001]; char ans[1001][1001]; int now1,now2; int main() { gets(a); int l=strlen(a); for(int i=0;i<l;i++) { if(a[i]!=‘ ‘) { ans[now1][now2]=a[i]; now2++; } else { now1++; now2=0; } } for(int i=now1;i>=0;i--) { printf("%s",ans[i]); cout<<" "; } return 0; }
标签:ios top tle title 长度 stat str bsp page
原文地址:http://www.cnblogs.com/zwfymqz/p/6485759.html