fork(1) download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[]){
  4. int c=0;
  5. for(int i=0;s[i] != '\0';i++){
  6. c++;
  7. }
  8. for(int j=0; s[j]==s[c-j];j++){
  9. if(j==c/2) return 1;
  10. }
  11. return 0;
  12. }
  13.  
  14. //メイン関数は書き換えなくてよいです
  15. int main(){
  16. char s[100];
  17. scanf("%s",s);
  18. printf("%s -> %d\n",s,isPalindrome(s));
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 5284KB
stdin
repaper
stdout
repaper -> 0