#27614:


40975026H (七賢)

學校 : 國立臺灣師範大學
編號 : 167974
來源 : [220.143.148.112]
最後登入時間 :
2022-06-02 14:48:34
a022. 迴文 | From: [140.122.19.69] | 發表日期 : 2021-10-19 16:57

#include<stdio.h>

#include<string.h>

#include<math.h>

int main(){

char s[1000];

int  A=0, i=0;

memset(s, '\0', strlen(s));

scanf("%s",s);

 

for(i=0;i<strlen(s);i++){

if(s[i]!=s[strlen(s)-i-1]){

A++;

}

}

if(A==0){

printf("yes");

}else{

printf("no");

}

return 0;

}

 
ZeroJudge Forum