#12084: C++ 參考


asdpeter6520 (hack)

學校 : 臺北市立建國高級中學
編號 : 66449
來源 : [220.134.22.166]
最後登入時間 :
2021-07-23 01:44:48
a022. 迴文 | From: [114.136.119.36] | 發表日期 : 2017-05-29 11:02

#include<iostream>
#include<string.h>
using namespace std;
int main()
{
     const int max=100;
     char input[max]={};
     while(cin>>input){
          int len=strlen(input);
          int check=0;
          for(int i=0;i<len/2;i++){
               if(input[i]!=input[len-1-i]){
                    check=-1;
               }
          }
          if(check==-1){
               cout<<"no";
          }
          else{
               cout<<"yes";
          }
          cout<<endl;
     }
}

 
ZeroJudge Forum