AcWing 670. 动物
原题链接
简单
作者:
fengyutong
,
2024-11-10 16:51:28
,
所有人可见
,
阅读 2
if else嵌套
#include<iostream>
using namespace std;
int main()
{
string a,b,c;
cin>>a>>b>>c;
if(a=="vertebrado")
{
if(b=="ave")
{
if(c=="carnivoro") cout<<"aguia"<<endl;
else cout<<"pomba"<<endl;
}
else
{
if(c=="onivoro") cout<<"homem"<<endl;
else cout<<"vaca"<<endl;
}
}
else
{
if(b=="inseto")
{
if(c=="hematofago") cout<<"pulga"<<endl;
else cout<<"lagarta"<<endl;
}
else
{
if(c=="hematofago") cout<<"sanguessuga"<<endl;
else cout<<"minhoca"<<endl;
}
}
return 0;
}