#include
#include
void main()
{
char str1[15],str2[15];
scanf("%s%s",str1,str2);
if(strcmp(str1,str2)==0)
printf("字符串相等\n");
else
printf("字符串不相等\n");
}
#include
using namespace std;
void main()
{
char Array1[256], Array2[256];
scanf("%s%s",Array1, Array2);
if(strcmp(Array1, Array2))
{
printf("字符串不相同");
}
else
{
printf("字符串相同");
}
}
#include "stdio.h"
void main()
{
char a,b;
scanf("%c%c",&a,&b);
if(a==b)printf("字符串相同");
else printf("字符串不同");
}
if(strcmp(s1,s2)==0)
{
printf("字符串相同");
}
else
{
printf("字符串不相同");
}