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 ;}