1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课外】14.指针2/6-3 字符串反正序连接.md

688 B
Raw Blame History

6-3 字符串反正序连接

先将在字符串s中的字符按逆序存放到t串中然后把s中的字符按正序连接到t串的后面。

函数接口定义:

void fun (char *s, char *t);

其中st 都是用户传入的参数。函数先将在字符串s中的字符按逆序存放到t串中,然后把s中的字符按正序连接到t串的后面。

裁判测试程序样例:

#include <stdio.h>
void fun (char *s, char *t);
int main()
{ char s[100], t[100];
scanf("%s", s);
fun(s, t);
printf("%s\n", t);
return 0;
}

/* 请在这里填写答案 */

输入样例:

abcd

输出样例:

dcbaabcd