用c++编写程序,将两个字符串连接起来,不使用strcat()函数
时间: 2023-12-15 17:10:36 浏览: 91
字符串拼接strcat使用及实现
你可以使用C++中的字符串类`std::string`来连接两个字符串。以下是一个示例程序,它可以将两个字符串连接起来:
```c++
#include <iostream>
#include <string>
int main() {
std::string str1, str2;
std::cout << "Input the first string: ";
std::getline(std::cin, str1);
std::cout << "Input the second string: ";
std::getline(std::cin, str2);
std::string res = str1 + str2;
std::cout << "Result string: " << res << std::endl;
return 0;
}
```
该程序会提示用户输入两个字符串,然后使用`+`操作符将它们连接到一个结果字符串中。注意,我们直接将两个字符串相加,不需要使用循环或其他操作来完成字符串的连接。最后,我们使用`std::cout`输出结果字符串。
阅读全文