标签:bcd ref problems pid txt ace 字符 php 字符串
不借用任何字符串库函数实现无冗余地接受两个字符串,然后把它们无冗余的连接起来。
每一行包括两个字符串,长度不超过100。
可能有多组测试数据,对于每组数据,
不借用任何字符串库函数实现无冗余地接受两个字符串,然后把它们无冗余的连接起来。
输出连接后的字符串。
abc def
abcdef
直接使用string,会比char[]方便一些。
1 #include <iostream> 2 #include <string.h> 3 #include <string> 4 5 using namespace std; 6 7 string str1, str2; 8 9 int main() 10 { 11 string ans; 12 while(cin>>str1, cin>>str2) 13 { 14 ans=str1+str2; 15 cout << ans <<endl; 16 } 17 return 0; 18 }
标签:bcd ref problems pid txt ace 字符 php 字符串
原文地址:http://www.cnblogs.com/shenckicc/p/6755655.html