c++ 判断两个字符串的值是否相等
时间: 2024-01-04 11:02:13 浏览: 118
要判断两个字符串的值是否相等,可以使用字符串比较函数。在C语言中,可以使用strcmp函数来比较两个字符串的值。strcmp函数的原型如下:
```
int strcmp(const char *str1, const char *str2);
```
参数str1和str2是要比较的两个字符串。函数返回值为0,表示两个字符串相等;如果返回值小于0,表示str1小于str2;如果返回值大于0,表示str1大于str2。
下面是一个例子,演示了如何使用strcmp函数判断两个字符串是否相等:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello";
char str2[] = "World";
if (strcmp(str1, str2) == 0) {
printf("The strings are equal.\n");
} else {
printf("The strings are not equal.\n");
}
return 0;
}
```
以上代码将输出"The strings are not equal.",因为str1和str2的值不相等。
相关问题
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
```
阅读全文