私信TA
用户名:H2030819040
访问量:17028
签 名:
剑光如我,斩尽芜杂
自我简介:
作者: 压死了累 发表时间:2020-12-20 16:05:05 浏览:62 | 评论:0
解题思路:
gets()输入
strcat()连接
puts()输出即可
注意事项:
记得头文件加上#include <string.h>参考代码:
#include <stdio.h> #include <string.h> int main() { char a[100],b[100]; gets(a); gets(b); strcat(a,b); puts(a); return 0; }
0.0分
0 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧