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. int w=myStrlen(s);
  14. char *tmp;
  15. tmp=(char *)malloc(sizeof(char)*w*2+1);
  16. for(int i=0;i<w;i++){
  17. tmp[i]=s[i];
  18. }
  19. for(int i=0;i<w;i++){
  20. tmp[w+i]=s[w-i-1];
  21. }
  22. tmp[2*w]='\n';
  23. return tmp;
  24. }
  25.  
  26.  
  27. //メイン関数はいじる必要はありません
  28. int main(){
  29. int i;
  30. char nyuryoku[1024]; //入力
  31. char *kaibun; //回文を受け取る
  32. scanf("%s",nyuryoku);
  33. kaibun = setPalindrome(nyuryoku);
  34. printf("%s\n -> %s\n",nyuryoku,kaibun);
  35. free(kaibun);
  36. return 0;
  37. }
  38.  
Success #stdin #stdout 0.01s 5284KB
stdin
aba
stdout
aba
  -> abaaba