#include <iostream>#include <cstring>using namespace std;int main() { char str1[] = "Hello"; char str2[] = "hello"; int result = strcmpi(str1, str2); if (result == 0) { cout << "字符串相等" << endl; } else { cout << "字符串不相等" << endl; } return 0;}
时间: 2024-03-04 15:54:12 浏览: 37
#include <iostream>
这段代码是用来比较两个字符串是否相等的。它通过调用C++标准库中的strcmpi函数来比较两个字符串。strcmpi函数会忽略字符串中的字母大小写,如果两个字符串相等,则返回0,否则返回非零值。在这段代码中,它比较了两个字符串"Hello"和"hello",由于忽略了大小写,所以这两个字符串被认为是相等的,程序会输出"字符串相等"。
阅读全文