c++判断两个string的数据类型是否相等
时间: 2023-12-03 08:01:51 浏览: 113
判断输入的两个字符串是否相等
5星 · 资源好评率100%
可以使用strcmp()函数来比较两个字符串的数据类型是否相等。strcmp()函数的原型如下:
```c
int strcmp(const char *s1, const char *s2);
```
该函数接受两个参数,即要比较的两个字符串,返回值为整型。如果返回值为0,则表示两个字符串相等;如果返回值大于0,则表示第一个字符串大于第二个字符串;如果返回值小于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.
```
在本例中,我们使用了strcmp()函数来比较三个字符串。由于str1和str2的数据类型不同,所以strcmp()函数返回值不为0,因此第一个if语句输出了"str1 and str2 are not equal.";而str1和str3的数据类型相同,所以strcmp()函数返回值为0,因此第二个if语句输出了"str1 and str3 are equal."。
阅读全文