原题: 题目描述    给定两个字符串string1和string2,将字符串string2连接在string1的后面,并将连接后的字符串输出。      输入   输入包含多组数据,每组测试数据包含两行,第一行代表string1,第二行代表string2     输出   对于每组输入数据,对应输出连接后的字符串,每组输出占一行。     示例输入 123 654 abs sfg 示例输出 123654 abssfg 分析: 没什么可分析的,记住下列函数 源码: #include<stdio.h>   //没什么难的——water problem~~学习字符串 #include<string.h> #include<iostream> #define N 99999 using namespace std; int main() {   char str1[N],str2[N];   while(cin>>str1>>str2)   {       strcat(str1,str2);  //记住这一重要的字符串函数       cout<<str1<<endl;   }   return 0; }            三醇,加油~~