題目要求很簡單,給兩個字符串,第一個字符串中有'<'和‘>’的符號,整個字符串可以分為s1
#include#include #include #include using namespace std; int main() { int n,l1,l2,i,j,k,f; char str1[105],str2[105],c,s2[105],s3[105],s4[105],s5[105]; scanf(%d,&n); getchar(); while(n--) { i=j=0; f=0; while((c=getchar())!=' ') { if(c=='<'&&f==0){f=1;j=0;continue;} if(c=='>'&&f==1){f=2;s2[j]='';j=0;continue;} if(c=='<'&&f==2){f=3;s3[j]='';j=0;continue;} if(c=='>'&&f==3){f=4;s4[j]='';j=0;continue;} str1[i++]=c; if(f==1)s2[j++]=str1[i-1]; if(f==2)s3[j++]=str1[i-1]; if(f==3)s4[j++]=str1[i-1]; if(f==4)s5[j++]=str1[i-1]; } s5[j]=str1[i]=''; i=0; while((c=getchar())!=' ') { if(c!='.')str2[i++]=c; } str2[i]=''; printf(%s ,str1); printf(%s%s%s%s%s ,str2,s4,s3,s2,s5); } return 0; }