#include
#include
using namespace std;
//-----------------------------------------------------
int compare(string str1,string str2)
{
if(str1==str2)
return 1;
else
return 0;
}
不要忘了#include
int compare(char s[],char t[])
{
int i=0;
while( s[i]&&t[i]&&s[i]==t[i] )
i++;
return s[i]==t[i] ;
}