文章

64

粉丝

100

获赞

4

访问

36.2k

头像
回文字符串 题解:
P1414 华中科技大学/东南大学2016年机试题
发布于2024年3月15日 15:34
阅读数 392

1414解题思路

#include <bits/stdc++.h>
   using namespace std;
   int main()
   {
   		char a[1005]={0};
	    while(gets(a))
	    {
	    	int l=strlen(a);
	    	int count=0;
	    	for(int j=0;j<l/2;j++)
	    	{
	    		if(a[j]==a[l-1-j])
	    		count++;
			}
			if(count==l/2)
			printf("Yes!\n");
			else
			printf("No!\n");
		}
	 }

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发