第1个回答 2010-05-03
代码如下:
//————————————————————————————
#include<stdio.h>
#include<string.h>
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;
}
//————————————————————————————