c++ 字符串比较相等
时间: 2023-11-03 20:22:07 浏览: 228
在 C 语言中,可以使用标准库中的strcmp函数来比较两个字符串是否相等。strcmp函数会逐个比较字符串中的字符,如果两个字符串完全相等,则返回0;如果不相等,则返回一个非零的值。
以下是一个比较字符串相等的示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello";
char str2[] = "Hello";
char str3[] = "World";
if (strcmp(str1, str2) == 0) {
printf("str1 and str2 are equal\n");
} else {
printf("str1 and str2 are not equal\n");
}
if (strcmp(str1, str3) == 0) {
printf("str1 and str3 are equal\n");
} else {
printf("str1 and str3 are not equal\n");
}
return 0;
}
```
输出结果:
```
str1 and str2 are equal
str1 and str3 are not equal
```
在上面的示例中,使用了strcmp函数来比较字符串的相等性。如果两个字符串相等,就输出相应的提示信息。
相关问题
c++比较字符串是否相等
在C++中,可以使用字符串比较函数`strcmp()`来比较两个字符串是否相等。`strcmp()`函数会比较两个字符串的每个字符,如果两个字符串完全一致,返回值为0。如果不一致,返回值会根据字符比较的结果而有所不同。
例如,以下代码可以比较两个字符串是否相等:
```c++
#include <iostream>
#include <cstring>
int main() {
char str1[] = "hello";
char str2[] = "world";
if (strcmp(str1, str2) == 0) {
std::cout << "The strings are equal." << std::endl;
} else {
std::cout << "The strings are not equal." << std::endl;
}
return 0;
}
```
在这个例子中,`strcmp()`函数将比较`str1`和`str2`两个字符串,由于它们不相等,所以输出结果为"The strings are not equal."
c++比较字符串相等函数
在 C 语言中,可以使用 strcmp() 函数来比较两个字符串是否相等。该函数位于 string.h 头文件中,其函数原型如下:
```c
int strcmp(const char *s1, const char *s2);
```
其中,s1 和 s2 分别表示要比较的两个字符串。如果两个字符串相等,则返回值为 0;如果 s1 大于 s2,则返回值大于 0;如果 s1 小于 s2,则返回值小于 0。
示例代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "hello";
char str2[] = "world";
char str3[] = "hello";
if (strcmp(str1, str2) == 0) {
printf("str1 and str2 are equal.\n");
} else {
printf("str1 and str2 are not equal.\n");
}
if (strcmp(str1, str3) == 0) {
printf("str1 and str3 are equal.\n");
} else {
printf("str1 and str3 are not equal.\n");
}
return 0;
}
```
输出结果:
```
str1 and str2 are not equal.
str1 and str3 are equal.
```
阅读全文