原种场的鹏哥


私信TA

用户名:tianpeng1183

访问量:11822

签 名:

一条路走到黑

等  级
排  名 5736
经  验 1501
参赛次数 0
文章发表 25
年  龄 0
在职情况 学生
学  校 南京工程学院
专  业 交通设备与控制工程

  自我简介:

解题思路:





注意事项:一定要细心!





参考代码:

#include <stdio.h>

#include <string.h>

int test(char a[],char b[]);

int main()

{

char name1[40],name2[40];

gets(name1);

test(name1,name2);

printf("%s\n",name2);

return 0;

}

int test(char a[],char b[])

{

int length = strlen(a);

int i=0;

while(a[i]!='\0')

{

b[length-i-1]=a[i];

i++;

}

b[length]='\0';

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »