fork(1) download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[])
  4. {
  5. int left = 0;
  6. int right = 0;
  7.  
  8. while (s[right] != '\0')
  9. {
  10. right++;
  11. }
  12. right--;
  13.  
  14.  
  15. while (left < right)
  16. {
  17. if (s[left] != s[right])
  18. {
  19. return 0;
  20. }
  21. left++;
  22. right--;
  23. }
  24.  
  25. return 1;
  26. }
  27.  
  28. //メイン関数は書き換えなくてよいです
  29. int main(){
  30. char s[100];
  31. scanf("%s",s);
  32. printf("%s -> %d\n",s,isPalindrome(s));
  33. return 0;
  34. }
  35.  
Success #stdin #stdout 0.01s 5284KB
stdin
girafarig
stdout
girafarig -> 1