编程实现两字符串的连接。 定义字符数组保存字符串,在程序中提示用户输入两个字符串,实现两个字符串的连接 最后用cout语句显示输出。 用cin实现输入 注意,字符串的结束标志是ASClI码0,使用循环语句进行字符串间的字符拷贝。
时间: 2024-02-21 19:56:37 浏览: 72
好的,以下是实现两个字符串连接的程序:
```
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str1[50], str2[50];
cout << "请输入第一个字符串:";
cin >> str1;
cout << "请输入第二个字符串:";
cin >> str2;
int len1 = strlen(str1);
int len2 = strlen(str2);
for(int i = 0; i < len2; i++) {
str1[len1 + i] = str2[i]; // 连接两个字符串
}
str1[len1 + len2] = '\0'; // 添加字符串结束标志
cout << "连接后的字符串为:" << str1 << endl;
return 0;
}
```
这个程序会要求用户输入两个字符串,然后将它们连接起来并输出。例如,如果用户输入"hello"和"world",则输出"连接后的字符串为:helloworld"。
阅读全文