include[HTML_REMOVED]
include[HTML_REMOVED]
char a[20],b[20],c[20];
int main(){
scanf(“%s\n”,&a);
scanf(“%s\n”,&b);
scanf(“%s\n”,&c);
if(strcmp(“vertebrado”,a)==0)
{
if(strcmp(“ave”,b)==0){
if(strcmp(“carnivoro”,c)==0)
{
printf("aguia");
}
else
{
if(strcmp("onivoro",c)==0)
{
printf("pomba");
}
}
}
else{
if(strcmp("onivoro",c)==0)
{
printf("homem");
}
else
{
if(strcmp("herbivoro",c)==0)
{
printf("vaca");
}
}
}
}
else
{
if(strcmp("inseto",b)==0){
if(strcmp("hematofago",c)==0)
{
printf("pulga");
}
else
{
if(strcmp( "herbivoro",c)==0)
{
printf("lagarta");
}
}
}
else{
if(strcmp( "hematofago",c)==0)
{
printf("sanguessuga");
}
else
{
if(strcmp( "onivoro",c)==0)
{
printf("minhoca");
}
}
}
}
return 0;
}
//scanf(“%s\n”);读取字符串
//strcmp(“”,a);进行比较大小