string 判断相等
时间: 2023-07-30 20:08:31 浏览: 92
判断输入的两个字符串是否相等
5星 · 资源好评率100%
在 C++ 中,可以使用`==`运算符来判断两个字符串是否相等。以下是一个示例代码:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello";
std::string str2 = "Hello";
if (str1 == str2) {
std::cout << "The strings are equal." << std::endl;
} else {
std::cout << "The strings are not equal." << std::endl;
}
return 0;
}
```
在上面的例子中,我们声明了两个字符串`str1`和`str2`,并使用`==`运算符比较它们。如果两个字符串相等,就会输出"The strings are equal.",否则输出"The strings are not equal."。
阅读全文