#11004: c 參考


g0410573 (unknown)

學校 : 國立新竹高級中學
編號 : 58016
來源 : [140.113.237.228]
最後登入時間 :
2020-10-08 17:17:18
a022. 迴文 | From: [106.1.231.45] | 發表日期 : 2016-06-05 21:45

#include<stdio.h>
main()
{char s[1000];
int c=0,a=0,i=0;
while(scanf("%s", s)!=EOF){
while(s[c]!=0){ c++;
}c--;
while(i<=c){
a+=s[i]==s[c]?0:1;
i++;
c--;
}
switch(a){
case 0:printf("yes\n"); break;
default :printf("no\n"); break;
}a=0;
while(a<=1000){s[a]=0;a++;}
c=a=i=0;
}
}

 
ZeroJudge Forum