fork download
  1. #include <stdio.h>
  2.  
  3. int isPalindrome(char s[]) {
  4. int start = 0;
  5. int end = 0;
  6.  
  7. // 文字列の長さを計算
  8. while (s[end] != '\0') {
  9. end++;
  10. }
  11. end--; // 最後の文字のインデックスに合わせる
  12.  
  13. // 回文チェック
  14. while (start < end) {
  15. if (s[start] != s[end]) {
  16. return 0; // 回文ではない
  17. }
  18. start++;
  19. end--;
  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 5280KB
stdin
shinbunshi 
stdout
shinbunshi -> 0