代码如下:
//————————————————————————————
#include
#include
int main()
{
char s[100];
while(gets(s))
{
if(strcmp(s,"find me boring")==0)
printf("tell me\n");
else
printf("reply me\n");
}
return 0;
}
//————————————————————————————
#include
#include
main()
{
char s[80];
gets(s);
if(strcmp(s, "find me boring")==0)
printf("tell me\n");
else
printf("reply me\n");
}