fork download
  1. # include <stdio.h>
  2.  
  3. void gyakuten(char s[],char t[]){
  4. int i,p=0;
  5.  
  6. for(i=0;s[i]!='\0';i++){
  7. p++;
  8. }
  9.  
  10. for(i=0;i<p;i++){
  11. t[i]=s[p-i-1];
  12. }
  13. t[p]='\0';
  14. }
  15.  
  16. int fuzzyStrcmp(char s[], char t[]){
  17. int i;
  18.  
  19. for(i=0;s[i]==t[i];i++){
  20. if(s[i]=='\0'){
  21. return 1;
  22. }
  23. }
  24. return 0;
  25. }
  26.  
  27. int isPalindrome(char s[]){
  28. //関数の中だけを書き換えてください
  29. //回文になっているとき1を返す
  30. //回文になっていないとき0を返す
  31. char t[100];
  32. gyakuten(s,t);
  33. return fuzzyStrcmp(s,t);
  34.  
  35. }
  36.  
  37.  
  38. int main(){
  39. char s[100];
  40. scanf("%s",s);
  41. printf("%s -> %d\n",s,isPalindrome(s));
  42. return 0;
  43. }
  44.  
Success #stdin #stdout 0.01s 5280KB
stdin
shinbunshi
stdout
shinbunshi -> 0