UVA 10340 All in All

简单的字符串问题

#include 
#include 
#include 
using namespace std;
int main()
{
	char str0[100000];
	char str1[100000];
	while(scanf("%s%s",str0,str1)!=EOF)
	{
         int lenth1=strlen(str0);
         int lenth2=strlen(str1);
         bool flag=false;
         int cnt=0,k=0;
         for(int i=0;i


你可能感兴趣的:(字符串_习题)