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