0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00
OI-codes/AcWing/670/670.cpp

39 lines
1.0 KiB
C++

#include <bits/stdc++.h>
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 if (c == "onivoro") {
cout << "pomba" << endl;
}
} else if (b == "mamifero") {
if (c == "onivoro") {
cout << "homem" << endl;
} else if (c == "herbivoro") {
cout << "vaca" << endl;
}
}
} else if (a == "invertebrado") {
if (b == "inseto") {
if (c == "hematofago") {
cout << "pulga" << endl;
} else if (c == "herbivoro") {
cout << "lagarta" << endl;
}
} else if (b == "anelideo") {
if (c == "hematofago") {
cout << "sanguessuga" << endl;
} else if (c == "onivoro") {
cout << "minhoca" << endl;
}
}
}
return 0;
}