fork download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[]){
  4. //関数の中だけを書き換えてください
  5. //回文になっているとき1を返す
  6. //回文になっていないとき0を返す
  7. int i,count,j,k=0;
  8. for(i=0; s[i]!='\0'; i++);
  9. count=i-1;
  10. //printf("%d\n",count);
  11. for(j=count; j>count/2; j--){
  12. if(s[k]!=s[j]) return 0;
  13. else k++;
  14. }
  15. return 1;
  16. }
  17.  
  18. //メイン関数は書き換えなくてよいです
  19. int main(){
  20. char s[100];
  21. scanf("%s",s);
  22. printf("%s -> %d\n",s,isPalindrome(s));
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0s 5276KB
stdin
girafarig
stdout
girafarig -> 1