CPP24. 字符串拼接
描述
键盘输入两个字符串,将这两个字符串进行拼接后输出。输入描述
键盘输入两个字符串输出描述
输出两个字符串拼接后的结果示例1
输入:
hello nihao
输出:
hellonihao
C++ 解法, 执行用时: 2ms, 内存消耗: 328KB, 提交时间: 2021-10-30
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); // write your code here...... string c = s1 + s2; cout << c << endl; return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 384KB, 提交时间: 2021-11-21
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); s1+=s2; cout<<s1<<endl;// write your code here...... return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 392KB, 提交时间: 2021-12-14
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); // write your code here...... cout <<s1<<s2; return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 392KB, 提交时间: 2021-10-16
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); // write your code here...... cout << s1+s2 << endl; return 0; }
C++ 解法, 执行用时: 2ms, 内存消耗: 396KB, 提交时间: 2022-01-03
#include <iostream> #include <string> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); // write your code here...... // write your code here...... s1+=s2; cout<<s1<<endl; /* string s3=s1+s2; int i; for(i=0;i<=s3.length()-2;i++){ printf("%c",s3[i]); } // printf("%c\n",s3[s3.length()-1]); */ return 0; }