杭电acm2029,哪错了,求教。。。。。。。。

#include<iostream>#include<cstring>usingnamespacestd;intmain(){intn,i,s,flag;charstr[... #include<iostream>
#include<cstring>
using namespace std;

int main()
{
int n,i,s,flag;
char str[100];

while(cin >> n)
{
getchar();

for(i=0; i<n; i++)
{

gets(str);
s=strlen(str);
flag=0;

for(i=0; i<=s/2; i++)
{

if(str[i]==str[s-1-i])
flag++;
else
flag=0;

}
if(flag>0)
cout << "yes" << endl;
else
cout << "no" << endl;
}

}
system("pause");
return 0;
}
展开
 我来答
百度网友1fc36d4
2012-05-02 · TA获得超过3129个赞
知道大有可为答主
回答量:1497
采纳率:100%
帮助的人:1825万
展开全部
#include<iostream>
#include<cstring>
using namespace std;

int main()
{
int n,i,j,s,flag;
char str[100];

while(cin >> n)
{
getchar();

for(i=0; i<n; i++)
{

gets(str);
s=strlen(str);
flag=0;

for(j=0; j<=s/2; j++)//使用另一个变量j来做循环计数
{

if(str[j]==str[s-1-j])
flag++;
else
{
flag=0;
break;//不对称了则停止比较
}

}
if(flag>0)
cout << "yes" << endl;
else
cout << "no" << endl;
}

}
system("pause");
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式