首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

HDU 2029 判断是不是为回文数

2012-09-14 
HDU 2029判断是否为回文数#includeiostream#includestringusing namespace stdbool is_huiweishu(str

HDU 2029 判断是否为回文数

#include<iostream>#include<string>using namespace std;bool is_huiweishu(string str){  int i,j;  bool bol;  for(i=str.length()-1,j=0;i>j;i--,j++)  {    if(str[i]==str[j])     {        bol = true;        continue;     }     else    {      bol = false;      break;    }  }  return bol;}int main(){    int n,m;    string str;        cin>>n;    while(n--)    {     cin>>str;     if(is_huiweishu(str))     {       cout<<"yes"<<endl;     }     else     {       cout<<"no"<<endl;     }    } return 0  ;}

热点排行