c++怎么输入两个字符串判断是否相等
时间: 2023-12-09 08:07:03 浏览: 146
你可以使用 C++中的 `std::string` 类型和 `==` 操作符来比较两个字符串是否相等。以下是一个例子:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str1, str2;
std::cout << "请输入第一个字符串: ";
std::getline(std::cin, str1); // 使用 getline() 可以读取包括空格在内的整行输入
std::cout << "请输入第二个字符串: ";
std::getline(std::cin, str2);
if (str1 == str2) {
std::cout << "两个字符串相等" << std::endl;
} else {
std::cout << "两个字符串不相等" << std::endl;
}
return 0;
}
```
在这个例子中,我们首先定义了两个 `std::string` 对象 `str1` 和 `str2`,然后使用 `std::getline()` 函数从标准输入中读取两个字符串。最后,我们使用 `==` 操作符来比较两个字符串是否相等。如果相等,输出 "两个字符串相等";否则,输出 "两个字符串不相等"。
相关问题
c++判断两个字符串内容是否相同
可以使用标准库函数strcmp(char *s1, char *s2)来比较两个字符串内容是否相同。该函数会返回0,如果两个字符串内容相同;否则,返回非0值。示例代码如下:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
if(strcmp(str1, str2) == 0) {
printf("两个字符串内容相同\n");
} else {
printf("两个字符串内容不同\n");
}
return 0;
}
```
c++判断两个字符串是否相等
在C++中判断两个字符串是否相等可以使用字符串比较函数`strcmp()`,该函数接受两个字符串参数,如果两个字符串相等则返回0,否则返回非0值。示例代码如下:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str1[] = "Hello";
char str2[] = "world";
char str3[] = "Hello";
if (strcmp(str1, str2) == 0) {
cout << "str1 and str2 are equal" << endl;
} else {
cout << "str1 and str2 are not equal" << endl;
}
if (strcmp(str1, str3) == 0) {
cout << "str1 and str3 are equal" << endl;
} else {
cout << "str1 and str3 are not equal" << endl;
}
return 0;
}
```
输出结果为:
```
str1 and str2 are not equal
str1 and str3 are equal
```
另外,如果使用`std::string`类型存储字符串,则可以使用`==`运算符判断两个字符串是否相等,示例代码如下:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "Hello";
string str2 = "world";
string str3 = "Hello";
if (str1 == str2) {
cout << "str1 and str2 are equal" << endl;
} else {
cout << "str1 and str2 are not equal" << endl;
}
if (str1 == str3) {
cout << "str1 and str3 are equal" << endl;
} else {
cout << "str1 and str3 are not equal" << endl;
}
return 0;
}
```
输出结果为:
```
str1 and str2 are not equal
str1 and str3 are equal
```
阅读全文