#include<cstdio>
#include<cstring>
using namespace std;
int main()
{
int n;
char str[];
scanf("%d", &n);
while(n--)
{
scanf("%s", str);
int len = strlen(str);
int flag = ;
for(int i = , j = len-; i <= j; i++, j--)
{
if(str[i] != str[j])
{
flag = ;
break;
}
}
if(!flag) printf("no\n");
else printf("yes\n");
}
return ;
}

最新文章

  1. NYOJ 737 石子合并(一)
  2. C++学习之重载、覆盖与隐藏
  3. [Android Pro] proguard
  4. 反转链表 --剑指offer
  5. 一步步学习NHibernate(7)——HQL查询(1)
  6. importExcel运用注解实现EXCEL导入poi类
  7. cortex m0 lpc1114的NVIC中断如何使用
  8. Creating Lists and Cards 创建列表和卡片
  9. 大数据除法(Large data division)
  10. Linux系统基础优化
  11. RedHat系列软件管理(第二版) --源码包安装
  12. 常见Web攻击
  13. Django的认证系统和Django admin的简单使用
  14. Python发送QQ邮件
  15. JAVA面试精选【Java web部分一】
  16. 记录:CSS选择器学习
  17. dhtmlx uploader使用
  18. [leetcode]Populating Next Right Pointers in Each Node @ Python
  19. JAVA中重写equals()方法为什么要重写hashcode()方法?
  20. MSSqlServer 数据库降级及数据转移

热门文章

  1. 杭电1023Train Problem II
  2. Oracle数据库安全(二)资源限制于口令管理
  3. xaml可扩展应用程序标记语言
  4. 使用KNN算法手写体识别
  5. c# 布局(stackpanel)
  6. MFC 任务管理器设计
  7. Springer Latex
  8. 图片加载之Picasso使用
  9. 阿里云centOS7.4 nginx: [emerg] &quot;server&quot; directive is not allowed here in /etc/nginx/vhost/xxxxxx.conf:2
  10. sql 生成随机数 以及不重复随机数