fork download
  1. #include <stdio.h>
  2.  
  3. int isPalindrome(char s[]) {
  4. int a = 0;
  5. int b = 0;
  6.  
  7. // 文字列の終端を探す
  8. while (s[b] != '\0') {
  9. b++;
  10. }
  11. b--; // 終端文字('\0')の前のインデックスに戻す
  12.  
  13. // 回文かどうかを確認
  14. while (a < b) {
  15. if (s[a] != s[b]) {
  16. return 0; // 回文ではない
  17. }
  18. a++;
  19. b--;
  20. }
  21.  
  22. return 1; // 回文である
  23. }
  24.  
  25. int main() {
  26. char s[100];
  27. scanf("%s", s);
  28. printf("%s -> %d\n", s, isPalindrome(s));
  29. return 0;
  30. }
  31.  
Success #stdin #stdout 0s 5284KB
stdin
girafarig
stdout
girafarig -> 1