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