如何编写C语言程序

以爱情的名义
如何编一个小的c语言程序,使得当输入find me boring 时 输出tell me 而当 输入其他时 输出 reply me

第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;
}
//————————————————————————————
第2个回答  2010-05-03
#include<stdio.h>
#include<string.h>
main()
{
char s[80];
gets(s);
if(strcmp(s, "find me boring")==0)
printf("tell me\n");
else
printf("reply me\n");
}本回答被提问者采纳
相似回答