程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> UVA 10361 Automatic Poetry

UVA 10361 Automatic Poetry

編輯:關於C++

題目要求很簡單,給兩個字符串,第一個字符串中有'<'和‘>’的符號,整個字符串可以分為s1s3s5。第二個字符串中結尾是'...'。要求輸出兩個字符串,一個是將第一個字符串中的'<'和'>'去掉,另一個是在第二個字符串後面加上s4s3s2s5。直接模擬即可。

 

#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;
}


 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved