fork download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[]){
  4. //関数の中だけを書き換えてください
  5. //回文になっているとき1を返す
  6. //回文になっていないとき0を返す
  7. char t[100];
  8. int count=0;
  9. for(int i=0;s[i]!='\0';i++){
  10. count++;
  11. }
  12. int num=count;
  13. for(int i=0;i!=num;i++){
  14. count--;
  15. t[count]=s[i];
  16. }
  17. for(int i=0;s[i]==t[i];i++){
  18. if(s[i]=='\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. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
 -> 0