Eternal


私信TA

用户名:asd851472957

访问量:1358

签 名:

等  级
排  名 23492
经  验 635
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校 广东工程职业技术学院
专  业

  自我简介:

解题思路:给字符串定义命名空间,用gets输入字符串,再用strcat函数链接字符串并输出。

注意事项:注意加头文件 #include<string.h>

参考代码:

#include<stdio.h>

#include<string.h>


int main()

{

   char a[1000],b[1000];

   gets(a);

   gets(b);

   strcat(a,b);

   printf("%s",a);

}


 

0.0分

0 人评分

  评论区

  • «
  • »