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.  
  11. // 関数の中でtmpに対してmallocして
  12. // そこに回文を代入してreturnで返しましょう
  13.  
  14. char *setPalindrome(char s[]){
  15. char *tmp;
  16. //以下に必要な宣言を含めて書いてください
  17. int length=myStrlen(s);
  18. int total=2*length;
  19.  
  20. tmp=(char*)malloc(sizeof(char)*(total+1));
  21.  
  22. if(tmp==NULL){
  23. printf("ERROR\n");
  24. }
  25.  
  26. //前半部分をコピー
  27. for(int i=0;i<length;i++){
  28. tmp[i]=s[i];
  29. }
  30.  
  31. //後半部分を作成
  32. for(int i=0;i<length;i++){
  33. tmp[length+i]=s[length-1-i];
  34. }
  35.  
  36. tmp[total]='\0';
  37.  
  38. return tmp;
  39. }
  40.  
  41.  
  42. //メイン関数はいじる必要はありません
  43. int main(){
  44. int i;
  45. char nyuryoku[1024]; //入力
  46. char *kaibun; //回文を受け取る
  47. scanf("%s",nyuryoku);
  48. kaibun = setPalindrome(nyuryoku);
  49. printf("%s\n -> %s\n",nyuryoku,kaibun);
  50. free(kaibun);
  51. return 0;
  52. }
  53.  
Success #stdin #stdout 0s 5280KB
stdin
abcd
stdout
abcd
  -> abcddcba