fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int myStrlen(char s[]){
  5. int i;
  6. for(i=0;s[i]!='\0';i++);
  7. return i;
  8. }
  9.  
  10. // 関数の中でtmpに対してmallocして
  11. // そこに回文を代入してreturnで返しましょう
  12. char *setPalindrome(char s[]){
  13. char *tmp;
  14. int i=myStrlen(s);
  15. tmp=(char*)malloc(sizeof(char)*i*2+1);
  16. int t=i*2;
  17.  
  18. int count=0;
  19. for(;t>i;t--)
  20. {
  21. tmp[t-1]=s[count];
  22. tmp[count]=s[count];
  23. count++;
  24. }
  25. tmp[i*2]='\0';
  26.  
  27. return tmp;
  28. //以下に必要な宣言を含めて書いてください
  29. }
  30.  
  31.  
  32. //メイン関数はいじる必要はありません
  33. int main(){
  34. int i;
  35. char nyuryoku[1024]; //入力
  36. char *kaibun; //回文を受け取る
  37. scanf("%s",nyuryoku);
  38. kaibun = setPalindrome(nyuryoku);
  39. printf("%s\n -> %s\n",nyuryoku,kaibun);
  40. free(kaibun);
  41. return 0;
  42. }
  43.  
Success #stdin #stdout 0.01s 5276KB
stdin
abcd
stdout
abcd
  -> abcddcba