编程实现两字符串的连接。定义字符数组保存字符串,在提示用户输入两个字符串,实现两个字符串的连接,最后用 cout 语句显示输出。 注意:字符串的结束标志是 ASCII 码 0 ,使用循环语句进行字符串间的字符拷贝。 #include
using namespace std; int main() { int i=0,j=0; char s1[200],s2[100]; cout << " 请输入第一个字符串: "; cin >> s1; cout << " 请输入第二个字符串: "; cin >>s2; while(s1[i]) ; while(s2[j]) ; s1[i] = '\0'; cout << " 连接后的字符串为: " << s1 << endl; return 0; }