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