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