题解 | #密码截取#
密码截取
http://www.nowcoder.com/practice/3cd4621963e8454594f00199f4536bb1
#include<iostream>
#include<string.h>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string a;
while(getline(cin,a))
{
int b=a.length();
int e=1;
for(int i=0;i<b-1;i++)
{
for(int j=b-1;j>0;j--)
{
int c=0;
for(int m=0;m<=(j-i)/2;m++)
{
//char s=a[i+m],t=a[j-m];
if(a[i+m]==a[j-m]&&i+m==j-m)
{
c++;
break;
}
else if(a[i+m]==a[j-m]&&i+m!=j-m)
{
c=c+2;
}
else if(a[i+m]!=a[j-m])
{
c=0;
break;
}
}
if(c>e)
{
e=c;
}
}
}
cout<<e;
}
return(0);
}
#include<string.h>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string a;
while(getline(cin,a))
{
int b=a.length();
int e=1;
for(int i=0;i<b-1;i++)
{
for(int j=b-1;j>0;j--)
{
int c=0;
for(int m=0;m<=(j-i)/2;m++)
{
//char s=a[i+m],t=a[j-m];
if(a[i+m]==a[j-m]&&i+m==j-m)
{
c++;
break;
}
else if(a[i+m]==a[j-m]&&i+m!=j-m)
{
c=c+2;
}
else if(a[i+m]!=a[j-m])
{
c=0;
break;
}
}
if(c>e)
{
e=c;
}
}
}
cout<<e;
}
return(0);
}