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